示例#1
0
 def __init__( self, context, name, files, explicit ):
     ContextReferer.__init__( self, context )
     CoreInputArtifact.__init__( self, name, files, explicit )
示例#2
0
 def __init__( self, context, name, atomicArtifact, files, explicit ):
     ContextReferer.__init__( self, context )
     CoreSubatomicArtifact.__init__( self, name, atomicArtifact, files, explicit )
示例#3
0
 def __init__( self, context, name, componants, explicit ):
     ContextReferer.__init__( self, context )
     CoreCompoundArtifact.__init__( self, name, componants, explicit )
示例#4
0
 def __init__( self, context, name, files, strongDependencies, orderOnlyDependencies, automaticDependencies, explicit ):
     ContextReferer.__init__( self, context )
     CoreAtomicArtifact.__init__( self, name, files, strongDependencies, orderOnlyDependencies, automaticDependencies, explicit )
示例#5
0
文件: Flavour.py 项目: jacquev6/ViDE
 def __init__(self, context):
     Loadable.__init__(self)
     ContextReferer.__init__(self, context)
示例#6
0
文件: Project.py 项目: jacquev6/ViDE
 def __init__( self, context ):
     ContextReferer.__init__( self, context )
     self.__artifacts = []