Example #1
0
 def __init__(self, typeId, state=State.offline, charge=None):
     Holder.__init__(self, typeId, state)
     self.__charge = charge
Example #2
0
 def __init__(self, typeId):
     Holder.__init__(self, typeId, State.offline)
Example #3
0
 def __init__(self, typeId, level=0):
     Holder.__init__(self, typeId, State.offline)
     self.__level = level
Example #4
0
 def __init__(self, typeId, level=0):
     Holder.__init__(self, typeId, State.offline)
     self.__level = level
Example #5
0
 def __init__(self, typeId, state=State.offline, charge=None):
     Holder.__init__(self, typeId, state)
     self.__charge = charge
Example #6
0
 def __init__(self, typeId):
     Holder.__init__(self, typeId, State.offline)
     # Holder-container, into which our charge holder is
     # "loaded"
     self.container = None
Example #7
0
 def __init__(self, typeId):
     Holder.__init__(self, typeId, State.offline)
Example #8
0
 def __init__(self, typeId):
     Holder.__init__(self, typeId, State.offline)
     # Holder-container, into which our charge holder is
     # "loaded"
     self.container = None