Draw2D v2.0

org.eclipse.draw2d
Interface AncestorListener

All Known Implementing Classes:
AbstractConnectionAnchor, AncestorListener.Stub

public interface AncestorListener

A listener interface for receiving changes in the ancestor hierarchy of the listening IFigure.


Inner Class Summary
static class AncestorListener.Stub
           
 
Method Summary
 void ancestorAdded(IFigure ancestor)
          Called when an ancestor has been added into the listening figure's hierarchy.
 void ancestorMoved(IFigure ancestor)
          Called when an ancestor has moved to a new location.
 void ancestorRemoved(IFigure ancestor)
          Called when an ancestor has been removed from the listening figure's hierarchy.
 

Method Detail

ancestorAdded

public void ancestorAdded(IFigure ancestor)
Called when an ancestor has been added into the listening figure's hierarchy.

ancestorMoved

public void ancestorMoved(IFigure ancestor)
Called when an ancestor has moved to a new location.

ancestorRemoved

public void ancestorRemoved(IFigure ancestor)
Called when an ancestor has been removed from the listening figure's hierarchy.

Draw2D v2.0