Example #1
0
 def __init__(self, id, name=None, nextCapacityStationBufferId=None,**kw):
     Exit.__init__(self, id, name)
     self.isLocked=True
     self.nextCapacityStationBufferId=nextCapacityStationBufferId    # the id of the next station. If it is None it 
                                                                     # means it is the end of the system.
     self.nextCapacityStationBuffer=None                             # the next buffer. If it is None it
     from Globals import G
     G.CapacityStationExitList.append(self)