def __init__(self, source, destination):
     Movement.__init__(self, source, destination)
 def __init__(self, name=None):
     Movement.__init__(self, name)
     self.movements = {}
Exemple #3
0
 def __init__(self, name=None):
     Movement.__init__(self,name)
     self.movements = {}
Exemple #4
0
 def __init__(self, source, destination):
     Movement.__init__(self, source, destination)
     #composition
     self.movements = {}
     #aggregation
     self.nodes = {}
Exemple #5
0
 def __init__(self, source, destination):
     Movement.__init__(self, source, destination)
     #composition
     self.movements = {}
     #aggregation
     self.nodes = {}
 def __init__(self, source, destination):
     Movement.__init__(self, source, destination)