當前位置: 首頁>>代碼示例>>Python>>正文


Python Util.methodNotOverriddenError方法代碼示例

本文整理匯總了Python中hgu.Util.methodNotOverriddenError方法的典型用法代碼示例。如果您正苦於以下問題:Python Util.methodNotOverriddenError方法的具體用法?Python Util.methodNotOverriddenError怎麽用?Python Util.methodNotOverriddenError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在hgu.Util的用法示例。


在下文中一共展示了Util.methodNotOverriddenError方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def __init__(self, filePath, reportTree):
        """
        Open a linear report file.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例2: addH3

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addH3(self, textLine):
        """
        Add a normal header line.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例3: addGroupKey

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addGroupKey(self):
        """
        Adds the group symbol expanation to the report.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例4: addStageHeader

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addStageHeader(self, stage):
        """
        Add header for this specific stage.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例5: addReportHeader

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addReportHeader(self):
        """
        Add the report header that is common to all reports.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例6: addOnlyGroupsHeader

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addOnlyGroupsHeader(self, prefix = None):
        """
        Add header for part of file that lists only anatomy in groups.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例7: addPageBreak

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addPageBreak(self):
        """
        Add a page break.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例8: closeReportFile

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def closeReportFile(self):
        """
        Close a report file.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:10,代碼來源:ReportFile011.py

示例9: addStageAnatomyLine

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addStageAnatomyLine(self, stage, indentLine):
        """
        Add this line in a single stage format.  This includes the EMAP id but
        not the stage name.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:11,代碼來源:ReportFile011.py

示例10: addAbstractAnatomyLine

# 需要導入模塊: from hgu import Util [as 別名]
# 或者: from hgu.Util import methodNotOverriddenError [as 別名]
    def addAbstractAnatomyLine(self, anatomyLine):
        """
        Add an anatomy line in abstract format.  This includes the EMAPA id and
        the stage range.

        This method must be overriden by a derived class.  Raises exception
        if it is ever called.
        """
        Util.methodNotOverriddenError()
開發者ID:ma-tech,項目名稱:Anatomy,代碼行數:11,代碼來源:ReportFile011.py


注:本文中的hgu.Util.methodNotOverriddenError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。