Package org.graffiti.event
Interface AttributeListener
- All Superinterfaces:
EventListener,TransactionListener
- All Known Subinterfaces:
GraphView,ValueEditComponent,View,View2D,View3D
- All Known Implementing Classes:
AbstractAttributeListener,AbstractDialogableEditComponent,AbstractTab,AbstractValueEditComponent,AbstractView,ArrowShapeEditComponent,AttributeAdapter,BooleanEditComponent,ButtonOverlayView,ByteEditComponent,ChartAttributeEditor,ChartColorAttributeEditor,ChartsColumnAttributeEditor,ClusterColorAttributeEditor,ColorChooserEditComponent,ComboBoxEditComponent,CompoundImageAttributeEditor,CompoundImagePositionAttributeEditor,DockingAttributeEditor,DoubleEditComponent,EdgeArrowShapeEditComponent,EdgeEditComponent,EdgeShapeEditComponent,EdgeTab,EnhDoubleEditComponent,FastView,FloatEditComponent,FontAttributeEditor,GradientFillAttributeEditor,GraffitiView,GraphComponentEditComponent,GraphConstraintChecker,GraphTab,IntegerEditComponent,IPKGraffitiView,JComponentParameterEditor,KeggGroupPartAttributeEditor,KeggReactionIdAttributeEditor,KeggReactionTypeAttributeEditor,KeggRelationSubTypeAttributeEditor,KeggRelationTypeAttributeEditor,KeggTypeAttributeEditor,KineticLawHelper,LabelAlignmentAttributeEditor,LabelFontAttributeEditor,LabelStyleAttributeEditor,LandmarkSliderComponent,LineModeAttributeEditor,LineModeEditComponent,LongEditComponent,MatrixView,MultiFileSelectionEditComponent,NodeEditComponent,NodePathwayLinkVisualizationAttributeEditor,NodeShapeEditComponent,NodeTab,NullView,NumberEditComponent,ObjectListComponent,ShortEditComponent,SingleGraphElementEditComponent,SliderComponent,SpinnerEditComponent,StandardValueEditComponent,StringEditComponent,TextAreaEditComponent,ThicknessAttributeEditor,URLAttributeEditor,ValueEditComponentAdapter,XMLAttributeEditor
public interface AttributeListener extends TransactionListener
Interfaces an attribute events listener.
- Version:
- $Revision: 1.4 $
- See Also:
AttributeEvent
-
Method Summary
Modifier and Type Method Description voidpostAttributeAdded(AttributeEvent e)Called after an attribute has been added.voidpostAttributeChanged(AttributeEvent e)Called after an attribute has been changed.voidpostAttributeRemoved(AttributeEvent e)Called after an attribute has been removed.voidpreAttributeAdded(AttributeEvent e)Called just before an attribute is added.voidpreAttributeChanged(AttributeEvent e)Called before a change of an attribute takes place.voidpreAttributeRemoved(AttributeEvent e)Called just before an attribute is removed.Methods inherited from interface org.graffiti.event.TransactionListener
transactionFinished, transactionStarted
-
Method Details
-
postAttributeAdded
Called after an attribute has been added.- Parameters:
e- the AttributeEvent detailing the changes.
-
postAttributeChanged
Called after an attribute has been changed.- Parameters:
e- the AttributeEvent detailing the changes.
-
postAttributeRemoved
Called after an attribute has been removed.- Parameters:
e- the AttributeEvent detailing the changes.
-
preAttributeAdded
Called just before an attribute is added.- Parameters:
e- the AttributeEvent detailing the changes.
-
preAttributeChanged
Called before a change of an attribute takes place.- Parameters:
e- the AttributeEvent detailing the changes.
-
preAttributeRemoved
Called just before an attribute is removed.- Parameters:
e- the AttributeEvent detailing the changes.
-