Beispiel #1
0
 def __init__( self, originUrl, destinationFile ):
     Action.__init__( self )
     self.__originUrl = originUrl
     self.__destinationFile = destinationFile
Beispiel #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
Beispiel #3
0
 def __init__( self, directory ):
     Action.__init__( self )
     self.__directory = directory
Beispiel #4
0
 def __init__( self, originFile, destinationFile ):
     Action.__init__( self )
     self.__originFile = originFile
     self.__destinationFile = destinationFile
Beispiel #5
0
 def __init__( self, file ):
     Action.__init__( self )
     self.__file = file
Beispiel #6
0
 def __init__( self, archive, destination ):
     Action.__init__( self )
     self.__archive = archive
     self.__destination = destination
Beispiel #7
0
 def __init__( self, actions ):
     Action.__init__( self )
     self.__actions = actions
Beispiel #8
0
 def __init__(self, source, depFile, candidateCopiedHeaders):
     Action.__init__(self)
     self.__source = source
     self.__depFile = depFile
     self.__candidateCopiedHeaders = candidateCopiedHeaders
Beispiel #9
0
 def __init__( self, source, destination ):
     self.__source = source
     self.__destination = destination
     Action.__init__( self )