gistoolkit.display.shapeeditor
Interface ShapeEditorListener

All Known Implementing Classes:
EditCommand

public interface ShapeEditorListener

Class to allow listeners to be notified when events happen to shapes, such as points added, removed, or modified.


Method Summary
 void pointAdded(Point inPoint)
          Called when a point is added to the shape.
 void pointDeselected(Point inPoint)
          Called when a point is deselected.
 void pointRemoved(Point inPoint)
          Called when a point is removed.
 void pointSelected(Point inPoint)
          Called when a point is selected.
 void shapeUpdated(Shape inShape)
          Called when any update happens to the shape.
 

Method Detail

pointAdded

public void pointAdded(Point inPoint)
Called when a point is added to the shape.


pointSelected

public void pointSelected(Point inPoint)
Called when a point is selected.


pointDeselected

public void pointDeselected(Point inPoint)
Called when a point is deselected.


pointRemoved

public void pointRemoved(Point inPoint)
Called when a point is removed.


shapeUpdated

public void shapeUpdated(Shape inShape)
Called when any update happens to the shape.