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