示例#1
0
 def __init__(self):
     """ vtkBaseModule() -> vtkBaseModule
     Instantiate an emptt VTK Module with real VTK instance
     
     """
     Module.__init__(self)
     self.vtkInstance = None
示例#2
0
 def __init__(self):
     Module.__init__(self)
     self.array = None
     self.names = {}
     self.general_name = None
     self.domain = ''
     self.range = ''
示例#3
0
文件: init.py 项目: imclab/vistrails
 def __init__(self):
     """ MplFigureManager() -> MplFigureManager
     Init the class as a storage structure
     
     """
     Module.__init__(self)
     self.figManager = None
示例#4
0
 def __init__(self):
     Module.__init__(self)
     self.array = None
     self.names = {}
     self.general_name = None
     self.domain = ''
     self.range = ''
示例#5
0
 def __init__(self):
     """ SpreadsheetCell() -> SpreadsheetCell
     Initialize attributes
     
     """
     Module.__init__(self)
     self.location = None
示例#6
0
 def __init__(self):
     """ SheetReference() -> SheetReference
     Instantiate an empty SheetReference
     
     """
     Module.__init__(self)
     self.sheetReference = None
 def __init__(self):
     """ SpreadsheetCell() -> SpreadsheetCell
     Initialize attributes
     
     """
     Module.__init__(self)
     self.location = None
 def __init__(self):
     """ SheetReference() -> SheetReference
     Instantiate an empty SheetReference
     
     """
     Module.__init__(self)
     self.sheetReference = None
示例#9
0
 def __init__(self):
     """ MplFigureManager() -> MplFigureManager
     Init the class as a storage structure
     
     """
     Module.__init__(self)
     self.figManager = None
示例#10
0
 def __init__(self):
     """ vtkBaseModule() -> vtkBaseModule
     Instantiate an emptt VTK Module with real VTK instance
     
     """
     Module.__init__(self)
     self.vtkInstance = None
示例#11
0
 def __init__(self):
     """ SubModule() -> SubModule
     Create an inspector for pipeline
     
     """
     NotCacheable.__init__(self)
     Module.__init__(self)
     self.inspector = PipelineInspector()
 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
示例#13
0
 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
示例#14
0
文件: init.py 项目: imclab/vistrails
 def __init__(self, filename=None, url=None, source=None, name=None, 
              load=False):
     Module.__init__(self)
     self.filename = filename
     self.url = url
     self.source = source
     self.name = name
     self.load = load
     self.file = self.filename
     self.relativizePaths()
示例#15
0
 def __init__(self):
     """ CellLocation() -> CellLocation
     Instantiate an empty cell location, i.e. any available cell
     
     """
     Module.__init__(self)
     self.row = -1
     self.col = -1
     self.rowSpan = -1
     self.colSpan = -1
     self.sheetReference = None
 def __init__(self):
     """ CellLocation() -> CellLocation
     Instantiate an empty cell location, i.e. any available cell
     
     """
     Module.__init__(self)
     self.row = -1
     self.col = -1
     self.rowSpan = -1
     self.colSpan = -1
     self.sheetReference = None
示例#17
0
 def __init__(self):
     Module.__init__(self)
     
     #       attr1, attr2, attr3, ...
     # lbl1, val11, val12, val13, ...
     # lbl2, val21, val22, val23, ...
     # lbl3, val31, val32, val33, ...
     # ... , ...  , ...  , ...  , ...
     self.values     = None      # numpy.array
     self.ids        = None      # list<int>
     self.labels     = None      # list<string>
     self.attributes = None      # list<string>
示例#18
0
 def __init__(self, access_policy=None, replication_policy=None,
              format=None, submitter=None, owner=None, origin_mn=None,
              auth_mn=None, checksum="SHA-1"):
     Module.__init__(self)
     self.access_policy = access_policy
     self.replication_policy = replication_policy
     self.format = format
     self.submitter = submitter
     self.owner = owner
     self.origin_mn = origin_mn
     self.auth_mn = auth_mn
     self.checksum = checksum
示例#19
0
    def __init__(self):
        Module.__init__(self)

        #       attr1, attr2, attr3, ...
        # lbl1, val11, val12, val13, ...
        # lbl2, val21, val22, val23, ...
        # lbl3, val31, val32, val33, ...
        # ... , ...  , ...  , ...  , ...
        self.values = None  # numpy.array
        self.ids = None  # list<int>
        self.labels = None  # list<string>
        self.attributes = None  # list<string>
示例#20
0
 def __init__(self,
              filename=None,
              url=None,
              source=None,
              name=None,
              load=False):
     Module.__init__(self)
     self.filename = filename
     self.url = url
     self.source = source
     self.name = name
     self.load = load
     self.file = self.filename
     self.relativizePaths()
示例#21
0
 def __init__(self,
              filename=None,
              url=None,
              source=None,
              name=None,
              load=False):
     Module.__init__(self)
     self.filename = filename
     if url is not None and url.startswith("file://") and url.endswith(
             self.filename):
         self.url = None
     else:
         self.url = url
     self.source = source
     self.name = name
     self.load = load
     self.file = self.filename
     self.relativizePaths()
示例#22
0
 def __init__(self):
     Module.__init__(self)
     self.output_ports_order = []
示例#23
0
 def __init__(self):
     Module.__init__(self)
     self.input_ports_order = []
     self.values = tuple()
示例#24
0
 def __init__(self):
     Module.__init__(self)
     self.var = None
 def __init__(self):
     Module.__init__(self)
     print "test"
示例#26
0
 def __init__(self):
     Module.__init__(self)
     self.pvInstance = None
示例#27
0
 def __init__(self):
     Module.__init__(self)
     self.matrix = None
示例#28
0
 def __init__(self):
     Module.__init__(self)
     Feature.__init__(self)
示例#29
0
 def __init__(self):
     Module.__init__(self)
     self.need_error_meshes = False
     self.need_histograms = False
示例#30
0
 def __init__(self):
     ThreadSafeMixin.__init__(self)
     Module.__init__(self)
示例#31
0
 def __init__( self ):
     Module.__init__(self)
示例#32
0
 def __init__(self):
     Module.__init__(self)
     self.observer = None
     self.handler = None
     self.shareddata = None
示例#33
0
 def __init__(self):
     #ThreadSafeMixin.__init__(self)
     Module.__init__(self)
     self.tblmeta = []
示例#34
0
 def __init__(self):
     Module.__init__(self)
     self.observer = None
     self.handler = None
     self.shareddata = None
示例#35
0
 def __init__(self, lst, klass=None):
     Module.__init__(self)
     self.lst = lst
     self.klass = klass
示例#36
0
 def __init__(self):
     Module.__init__(self)
     self.renderType = "Pseudocolor Plot"
示例#37
0
 def __init__(self):
     Module.__init__(self)
     self.method = 'ltsa'
示例#38
0
 def __init__(self, file_entry=None):
     Module.__init__(self)
     if file_entry is not None:
         self.file_entry = file_entry
     else:
         self.file_entry = LoadAppLogic.CSVFileEntry()
示例#39
0
 def __init__(self):
     Module.__init__(self)
     self._name = ''
     self.options = {}
示例#40
0
 def __init__(self):
     Module.__init__(self)
     self.start_time = 0
示例#41
0
 def __init__(self):
     Module.__init__(self)
     self.helper = NrrdHelper()
示例#42
0
 def __init__(self):
     Module.__init__(self)
     self.feature_model = _OgrMemModel()
示例#43
0
 def __init__(self) :
   Module.__init__(self)
   self.canvas = None
示例#44
0
 def __init__(self, db_entry=None):
     Module.__init__(self)
     if db_entry is not None:
         self.db_entry = db_entry
     else:
         self.db_entry = LoadAppLogic.DatabaseEntry()
示例#45
0
 def __init__(self):
     Module.__init__(self)
     self.matrix = None
示例#46
0
 def __init__(self):
     Module.__init__(self)
     self.decimals = 0
示例#47
0
 def __init__(self):
     Module.__init__(self)
     self.canvas = None
示例#48
0
 def __init__(self):
     Module.__init__(self)
     self.axis=None
示例#49
0
 def __init__(self):
     Module.__init__(self)
     self.view = None
     self.reader = None;        
     self.cdms_variables = None;
     self.project_sphere = None;
示例#50
0
 def __init__(self):
     Module.__init__(self)
     self.axis = -1
     self.kind = 'quicksort'
     self.order = None