Esempio n. 1
0
 def __init__( self, originUrl, destinationFile ):
     Action.__init__( self )
     self.__originUrl = originUrl
     self.__destinationFile = destinationFile
Esempio n. 2
0
 def __init__( self, base, options = [], wd = None, context = None ):
     Action.__init__( self )
     self.__base = base
     self.__options = options
     self.__wd = wd
     self.__context = context
Esempio n. 3
0
 def __init__( self, directory ):
     Action.__init__( self )
     self.__directory = directory
Esempio n. 4
0
 def __init__( self, originFile, destinationFile ):
     Action.__init__( self )
     self.__originFile = originFile
     self.__destinationFile = destinationFile
Esempio n. 5
0
 def __init__( self, file ):
     Action.__init__( self )
     self.__file = file
Esempio n. 6
0
 def __init__( self, archive, destination ):
     Action.__init__( self )
     self.__archive = archive
     self.__destination = destination
Esempio n. 7
0
 def __init__( self, actions ):
     Action.__init__( self )
     self.__actions = actions
Esempio n. 8
0
 def __init__(self, source, depFile, candidateCopiedHeaders):
     Action.__init__(self)
     self.__source = source
     self.__depFile = depFile
     self.__candidateCopiedHeaders = candidateCopiedHeaders
Esempio n. 9
0
 def __init__( self, source, destination ):
     self.__source = source
     self.__destination = destination
     Action.__init__( self )