Package org.eclipse.gef
Interface EditPartListener
-
- All Known Implementing Classes:
EditPartListener.Stub
public interface EditPartListenerThe listener interface for receiving basic events from an EditPart. Listeners interested in only one type of Event can extend theEditPartListener.Stubimplementation rather than implementing the entire interface.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classEditPartListener.StubListeners interested in just a subset of Events can extend this stub implementation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchildAdded(EditPart child, int index)Called after a child EditPart has been added to its parent.voidpartActivated(EditPart editpart)Called when the editpart has been activated.voidpartDeactivated(EditPart editpart)Called when the editpart has been deactivated.voidremovingChild(EditPart child, int index)Called before a child EditPart is removed from its parent.voidselectedStateChanged(EditPart editpart)Called when the selected state of an EditPart has changed.
-
-
-
Method Detail
-
childAdded
void childAdded(EditPart child, int index)
Called after a child EditPart has been added to its parent.- Parameters:
child- the Childindex- the index at which the child was added
-
partActivated
void partActivated(EditPart editpart)
Called when the editpart has been activated.- Parameters:
editpart- the EditPart
-
partDeactivated
void partDeactivated(EditPart editpart)
Called when the editpart has been deactivated.- Parameters:
editpart- the EditPart
-
removingChild
void removingChild(EditPart child, int index)
Called before a child EditPart is removed from its parent.- Parameters:
child- the Child being removedindex- the child's current location
-
selectedStateChanged
void selectedStateChanged(EditPart editpart)
Called when the selected state of an EditPart has changed. Focus changes also result in this method being called.- Parameters:
editpart- the part whose selection was changed- See Also:
EditPart.getSelected()
-
-