当前位置: 首页>>代码示例>>Python>>正文


Python vistrails_module.Module类代码示例

本文整理汇总了Python中vistrails.core.modules.vistrails_module.Module的典型用法代码示例。如果您正苦于以下问题:Python Module类的具体用法?Python Module怎么用?Python Module使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Module类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

    def __init__(self):
        """ SpreadsheetCell() -> SpreadsheetCell
        Initialize attributes

        """
        Module.__init__(self)
        self.location = None
开发者ID:AnyarInc,项目名称:VisTrails,代码行数:7,代码来源:basic_widgets.py

示例2: __init__

 def __init__(self):
     """ SheetReference() -> SheetReference
     Instantiate an empty SheetReference
     
     """
     Module.__init__(self)
     self.sheetReference = None
开发者ID:cjh1,项目名称:VisTrails,代码行数:7,代码来源:basic_widgets.py

示例3: __init__

 def __init__(self):
     """ vtkBaseModule() -> vtkBaseModule
     Instantiate an emptt VTK Module with real VTK instance
     
     """
     Module.__init__(self)
     self.vtkInstance = None
开发者ID:cjh1,项目名称:VisTrails,代码行数:7,代码来源:base_module.py

示例4: transfer_attrs

 def transfer_attrs(self, module):
     self.pipeline = module.pipeline
     if module._port_specs is None:
         module.make_port_specs()
     self.input_remap = module._input_remap
     self.output_remap = module._output_remap
     Module.transfer_attrs(self, module)
开发者ID:AnyarInc,项目名称:VisTrails,代码行数:7,代码来源:sub_module.py

示例5: __init__

 def __init__(self):
     Module.__init__(self)
     self.locator = None
     self.version = -1
     self.pipeline = None
     self.execute = False
     self.embedWorkflow = False
     self.showSpreadsheetOnly = False
     self.forceDB = False
开发者ID:lumig242,项目名称:VisTrailsRecommendation,代码行数:9,代码来源:init.py

示例6: clear

 def clear(self):
     """ clear() -> None
     Remove event handler so the object can be freed correctly
     
     """
     # Remove all observers
     if self.observer:
         for e in vtkInteractionHandler.vtkEvents:
             self.observer.vtkInstance.RemoveObservers(e)
     Module.clear(self)
开发者ID:lumig242,项目名称:VisTrailsRecommendation,代码行数:10,代码来源:vtkhandler.py

示例7: mock_get_input

 def mock_get_input(self, name):
     if name == 'host':
         return host
     elif name == 'port':
         return port
     else:
         return Module.get_input(self, name)
开发者ID:AnyarInc,项目名称:VisTrails,代码行数:7,代码来源:init.py

示例8: __init__

    def __init__(self):
        Module.__init__(self)

        config = get_vistrails_persistent_configuration()
        if config.check('webRepositoryURL'):
            self.base_url = config.webRepositoryURL
        else:
            raise ModuleError(self,
                              ("No webRepositoryURL value defined"
                               " in the Expert Configuration"))

        # check if we are running in server mode
        # this effects how the compute method functions
        if config.check('isInServerMode'):
            self.is_server = bool(config.isInServerMode)
        else:
            self.is_server = False

        # TODO: this '/' check should probably be done in core/configuration.py
        if self.base_url[-1] == '/':
            self.base_url = self.base_url[:-1]
开发者ID:AnyarInc,项目名称:VisTrails,代码行数:21,代码来源:init.py

示例9: __init__

 def __init__(self):
     Module.__init__(self)
     self.input_ports_order = []
     self.output_ports_order = []
开发者ID:sguzwf,项目名称:VisTrails,代码行数:4,代码来源:init.py

示例10: transfer_attrs

 def transfer_attrs(self, module):
     Module.transfer_attrs(self, module)
     self.input_ports_order = [p.name for p in module.input_port_specs]
     self.output_ports_order = [p.name for p in module.output_port_specs
                                if p.name in module.connected_output_ports]
开发者ID:sguzwf,项目名称:VisTrails,代码行数:5,代码来源:init.py

示例11: setResult

 def setResult(self, port_name, value):
     if value is not None and port_name == "value":
         if value.name is None:
             value.name = self.forceGetInputFromPort("name", None)
     Module.setResult(self, port_name, value)
开发者ID:remram44,项目名称:tabledata-backport,代码行数:5,代码来源:common.py

示例12: updateUpstream

 def updateUpstream(self):
     if self.figInstance is None:
         self.figInstance = pylab.figure()
     pylab.hold(True)
     Module.updateUpstream(self)
开发者ID:lumig242,项目名称:VisTrailsRecommendation,代码行数:5,代码来源:bases.py

示例13: __init__

 def __init__(self):
     Module.__init__(self)
     self.qgis_obj = None
开发者ID:Nikea,项目名称:VisTrails,代码行数:3,代码来源:init.py

示例14: __init__

 def __init__(self):
     Module.__init__(self)
     self.figInstance = None
开发者ID:tacaswell,项目名称:VisTrails,代码行数:3,代码来源:bases.py

示例15: __init__

 def __init__(self, pattern, constraints=None):
     Module.__init__(self)
     self.pattern = pattern
     self.constraints = constraints
开发者ID:ScottWales,项目名称:cwsl-mas,代码行数:4,代码来源:drs_dataset.py


注:本文中的vistrails.core.modules.vistrails_module.Module类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。