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