Exemplo n.º 1
0
 def __init__(self, source, config, value):
     BaseCommand.__init__(self)
     self.undoable = True
     self.source = source
     self.config = config
     self.value = value
     self.old_value = None
Exemplo n.º 2
0
 def __init__(self, stash_name, keep_index):
     BaseCommand.__init__(self)
     self.stash_name = stash_name
     self.keep_index = keep_index
Exemplo n.º 3
0
 def __init__(self, stash_sha1):
     BaseCommand.__init__(self)
     self.stash_sha1 = stash_sha1
Exemplo n.º 4
0
 def __init__(self, selection, index):
     BaseCommand.__init__(self)
     self.selection = selection
     self.index = index
Exemplo n.º 5
0
 def __init__(self, model):
     BaseCommand.__init__(self)
     self.model = model
Exemplo n.º 6
0
 def __init__(self, model):
     BaseCommand.__init__(self)
     self.model = model
Exemplo n.º 7
0
 def __init__(self, ref, fmt, prefix, filename):
     BaseCommand.__init__(self)
     self.ref = ref
     self.fmt = fmt
     self.prefix = prefix
     self.filename = filename
Exemplo n.º 8
0
 def __init__(self):
     BaseCommand.__init__(self)
     self.factory = cmdfactory.factory()
Exemplo n.º 9
0
 def __init__(self, ref, fmt, prefix, filename):
     BaseCommand.__init__(self)
     self.ref = ref
     self.fmt = fmt
     self.prefix = prefix
     self.filename = filename
Exemplo n.º 10
0
 def __init__(self):
     BaseCommand.__init__(self)
     self.factory = cmdfactory.factory()
Exemplo n.º 11
0
 def __init__(self, stash_name, keep_index):
     BaseCommand.__init__(self)
     self.stash_name = stash_name
     self.keep_index = keep_index
Exemplo n.º 12
0
 def __init__(self, stash_sha1):
     BaseCommand.__init__(self)
     self.stash_sha1 = stash_sha1
Exemplo n.º 13
0
 def __init__(self, selection, index):
     BaseCommand.__init__(self)
     self.selection = selection
     self.index = index
Exemplo n.º 14
0
 def __init__(self, revision, no_commit, squash):
     BaseCommand.__init__(self)
     self.revision = revision
     self.no_commit = no_commit
     self.squash = squash
Exemplo n.º 15
0
 def __init__(self, revision, no_commit, squash):
     BaseCommand.__init__(self)
     self.revision = revision
     self.no_commit = no_commit
     self.squash = squash