Hernán Morales Durand
Hernán Morales Durand
It is also an instance variable. It is never written and setter is never called. This is the current implementation: ```smalltalk isFull "Answer if the spaceModel is completely occupied by...
Methods which use #isAbstract like theEntities:/#resetEntities: ... should make more explicit that isAbstract means the receiver class has no subclasses Rename isAbstract with #hasNotSubclasses or #isNotFinal or similar selector name.
The current way of creating spatial cell has several flaws: ```smalltalk new: aSpaceModel | anEntity | anEntity := super new. aSpaceModel notNil ifTrue: [ anEntity spaceModel: aSpaceModel. anEntity collector: aSpaceModel...
For complex entities, some details could be displayed when the mouse is over the entity in the grid. Add a method which answer a String with the desired detailed information...
To have a probe method listed in the Define the scenario (Confirm before launching) window, the method should be classified into the "probes" protocol. Also the method should be annotated...
Selection of unit type is missing in the UI
The toggle simulation controls in the UI complicates the implementation logic in the current version: - This spec widget is always "opened". It only changes its visible state. - When...
After discussion with Pierre the VW window layout for PoV setting could be enhanced or re-designed completely from scratch.
UI for setting the point of view (CMSpecPovSetter classes ?)