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