GEF v2.0

org.eclipse.gef
Class EditPartListener.Stub

java.lang.Object
  |
  +--org.eclipse.gef.EditPartListener.Stub
All Implemented Interfaces:
EditPartListener
Enclosing class:
EditPartListener

public static class EditPartListener.Stub
extends Object
implements 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.


Inner classes inherited from class org.eclipse.gef.EditPartListener
EditPartListener.Stub
 
Constructor Summary
EditPartListener.Stub()
           
 
Method Summary
 void childAdded(EditPart child, int index)
          Called after a child EditPart has been added to its parent.
 void partActivated(EditPart editpart)
          This method is currently never called by default.
 void partDeactivated(EditPart editpart)
          This method is currently never called by default.
 void removingChild(EditPart child, int index)
          Called before a child EditPart is removed from its parent.
 void selectedStateChanged(EditPart part)
          Called when the selected state of an EditPart has changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EditPartListener.Stub

public EditPartListener.Stub()
Method Detail

childAdded

public void childAdded(EditPart child,
                       int index)
Description copied from interface: EditPartListener
Called after a child EditPart has been added to its parent.
Specified by:
childAdded in interface EditPartListener

partActivated

public void partActivated(EditPart editpart)
Description copied from interface: EditPartListener
This method is currently never called by default.
Specified by:
partActivated in interface EditPartListener

partDeactivated

public void partDeactivated(EditPart editpart)
Description copied from interface: EditPartListener
This method is currently never called by default.
Specified by:
partDeactivated in interface EditPartListener

removingChild

public void removingChild(EditPart child,
                          int index)
Description copied from interface: EditPartListener
Called before a child EditPart is removed from its parent.
Specified by:
removingChild in interface EditPartListener

selectedStateChanged

public void selectedStateChanged(EditPart part)
Description copied from interface: EditPartListener
Called when the selected state of an EditPart has changed.
Specified by:
selectedStateChanged in interface EditPartListener
Following copied from interface: org.eclipse.gef.EditPartListener
See Also:
EditPart.SELECTED

GEF v2.0