Changeset 2200
- Timestamp:
- 02/05/08 07:15:20 (3 months ago)
- Files:
-
- gaphor/trunk/gaphor/diagram/association.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor/trunk/gaphor/diagram/association.py
r2185 r2200 50 50 51 51 # For the association ends: 52 self.add_watch(UML.Property.aggregation )53 self.add_watch(UML.Property.owningAssociation )54 self.add_watch(UML.Property.class_ )55 self.add_watch(UML.Property.interface_ )52 self.add_watch(UML.Property.aggregation, self.on_association_end_value) 53 self.add_watch(UML.Property.owningAssociation, self.on_association_end_value) 54 self.add_watch(UML.Property.class_, self.on_association_end_value) 55 self.add_watch(UML.Property.interface_, self.on_association_end_value) 56 56 self.add_watch(UML.Property.visibility, self.on_association_end_value) 57 57 #self.add_watch(UML.Property.name, self.on_association_end_value) … … 147 147 self.request_update() 148 148 break; 149 else: 150 for end in (self._head_end, self._tail_end): 151 end.set_text() 152 self.request_update() 153 149 154 150 155
