Uses of Class
org.pzgui.icon.Icon

Packages that use Icon
org.openflow.gui.drawables Objects which can be drawn by the Pan-Zoom GUI. 
org.pzgui Provides a GUI system which supports multiple windows which can be panned and zoomed. 
org.pzgui.icon Provides a framework for drawing and efficiently managing resizable graphics. 
 

Uses of Icon in org.openflow.gui.drawables
 

Methods in org.openflow.gui.drawables that return Icon
 Icon Node.getIcon()
          get how this node is visually represented
 

Methods in org.openflow.gui.drawables with parameters of type Icon
 void Node.setIcon(Icon icon)
          set how this node is visually represented
 

Constructors in org.openflow.gui.drawables with parameters of type Icon
DrawableIcon(Icon icon, int x, int y)
           
DrawableIcon(Icon icon, int x, int y, int w, int h)
           
LayoutableIcon(long id, Icon icon, int x, int y)
           
LayoutableIcon(long id, Icon icon, int x, int y, int w, int h)
           
Node(java.lang.String name, int x, int y, Icon icon)
           
NodeWithPorts(NodeType type, java.lang.String name, int x, int y, Icon icon)
           
SimpleNode(NodeType type, long id, Icon icon)
           
SimpleNode(NodeType type, java.lang.String name, int x, int y, long id, Icon icon)
           
SimpleNodeWithPorts(NodeType type, long id, Icon icon)
           
SimpleNodeWithPorts(NodeType type, java.lang.String name, int x, int y, long id, Icon icon)
           
 

Uses of Icon in org.pzgui
 

Methods in org.pzgui with parameters of type Icon
 void PZManager.displayIcon(Icon icon, int duration_msec, float scale)
          Display icon for duration_msec scaled by scale at the curret mouse location.
 void PZManager.displayIcon(Icon icon, int duration_msec, float scale, int x, int y)
          Display icon for duration_msec scaled by scale at the specified location.
 

Uses of Icon in org.pzgui.icon
 

Subclasses of Icon in org.pzgui.icon
 class CompositeIcon
          A icon which is composed of other icons.
 class EmptyIcon
          A text-based icon.
 class GeometricIcon
          An icon specified by geometric shapes.
 class ImageIcon
          An icon backed by a rasterized image.
 class ShapeIcon
          A java.awt.Shape-based icon.
 class TemporalIcon
          A graphic which displays only for a limited time before fading out.
 class TextIcon
          A text-based icon.
 

Methods in org.pzgui.icon with parameters of type Icon
 void CompositeIcon.add(Icon icon, java.lang.String where)
          Adds a component to this composite icon.
 

Constructors in org.pzgui.icon with parameters of type Icon
TemporalIcon(Icon icon, long duration_millis)
           
TemporalIcon(Icon icon, long duration_millis, float scale)