Package diva.util
Interface UserObjectContainer
-
- All Known Subinterfaces:
Connector,Figure,GrabHandle,ShapedFigure,Terminal
- All Known Implementing Classes:
AbstractConnector,AbstractFigure,AbstractFigureContainer,ArcConnector,ArcManipulator,AttributeBoundsManipulator,BasicEdgeHighlighter,BasicEllipse,BasicFigure,BasicGrabHandle,BasicHighlighter,BasicRectangle,BoundsManipulator,CircleManipulator,CompositeFigure,ConnectorManipulator,ConnectorTutorial.SitedRectangle,FigureDecorator,FigureTutorial.CustomRectangle,FigureWrapper,IconFigure,ImageFigure,KielerLayoutArcConnector,KielerLayoutConnector,LabelFigure,LabelWrapper,LinkManhattanConnector,ManhattanConnector,Manipulator,MoveHandle,PaintedFigure,PaneWrapper,PathFigure,PathManipulator,PortTerminal,RelativeLinkFigure,RoundedRectangle,ShadowHighlighter,StateBubble,StraightConnector,StraightTerminal,SwingWrapper,TerminalFigure,TransformedFigureTutorial.CloudFigure,TypedDecorator,VectorFigure
public interface UserObjectContainerAn object which is annotated with a single "user object" which is its semantic equivalent in an application.- Version:
- $Id$
- Author:
- Michael Shilman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetUserObject()Return the user object.voidsetUserObject(java.lang.Object object)Set the user object.
-
-
-
Method Detail
-
getUserObject
java.lang.Object getUserObject()
Return the user object.- Returns:
- The user object.
- See Also:
setUserObject(Object)
-
setUserObject
void setUserObject(java.lang.Object object)
Set the user object.- Parameters:
object- The user object.- See Also:
getUserObject()
-
-