public interface EditPartListener
EditPartListener.Stub
implementation rather than implementing the
entire interface.Modifier and Type | Interface and Description |
---|---|
static class |
EditPartListener.Stub
Listeners interested in just a subset of Events can extend this stub
implementation.
|
Modifier and Type | Method and Description |
---|---|
void |
childAdded(EditPart child,
int index)
Called after a child EditPart has been added to its parent.
|
void |
partActivated(EditPart editpart)
Called when the editpart has been activated.
|
void |
partDeactivated(EditPart editpart)
Called when the editpart has been deactivated.
|
void |
removingChild(EditPart child,
int index)
Called before a child EditPart is removed from its parent.
|
void |
selectedStateChanged(EditPart editpart)
Called when the selected state of an EditPart has changed.
|
void childAdded(EditPart child, int index)
child
- the Childindex
- the index at which the child was addedvoid partActivated(EditPart editpart)
editpart
- the EditPartvoid partDeactivated(EditPart editpart)
editpart
- the EditPartvoid removingChild(EditPart child, int index)
child
- the Child being removedindex
- the child's current locationvoid selectedStateChanged(EditPart editpart)
editpart
- the part whose selection was changedEditPart.getSelected()
Copyright (c) IBM Corp. and others 2000, 2011. All Rights Reserved.