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