Package org.eclipse.gef
Class EditPartListener.Stub
java.lang.Object
org.eclipse.gef.EditPartListener.Stub
- All Implemented Interfaces:
- EditPartListener
- Enclosing interface:
- EditPartListener
Listeners interested in just a subset of Events can extend this stub
 implementation. Also, extending the Stub will reduce the impact of new API on
 this interface.
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.eclipse.gef.EditPartListenerEditPartListener.Stub
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidchildAdded(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 part) Called when the selected state of an EditPart has changed.
- 
Constructor Details- 
Stubpublic Stub()
 
- 
- 
Method Details- 
childAddedDescription copied from interface:EditPartListenerCalled after a child EditPart has been added to its parent.- Specified by:
- childAddedin interface- EditPartListener
- Parameters:
- child- the Child
- index- the index at which the child was added
- See Also:
 
- 
partActivatedDescription copied from interface:EditPartListenerCalled when the editpart has been activated.- Specified by:
- partActivatedin interface- EditPartListener
- Parameters:
- editpart- the EditPart
- See Also:
 
- 
partDeactivatedDescription copied from interface:EditPartListenerCalled when the editpart has been deactivated.- Specified by:
- partDeactivatedin interface- EditPartListener
- Parameters:
- editpart- the EditPart
- See Also:
 
- 
removingChildDescription copied from interface:EditPartListenerCalled before a child EditPart is removed from its parent.- Specified by:
- removingChildin interface- EditPartListener
- Parameters:
- child- the Child being removed
- index- the child's current location
- See Also:
 
- 
selectedStateChangedDescription copied from interface:EditPartListenerCalled when the selected state of an EditPart has changed. Focus changes also result in this method being called.- Specified by:
- selectedStateChangedin interface- EditPartListener
- Parameters:
- part- the part whose selection was changed
- See Also:
 
 
-