Uses of Interface
edu.uci.ics.jung.visualization.picking.PickedState
-
Packages that use PickedState Package Description edu.uci.ics.jung.visualization Frameworks and mechanisms for visualizing JUNG graphs using Swing/AWT.edu.uci.ics.jung.visualization.picking Visualization mechanisms for supporting the selection of graph elements.edu.uci.ics.jung.visualization.renderers Visualization mechanisms relating to rendering. -
-
Uses of PickedState in edu.uci.ics.jung.visualization
Fields in edu.uci.ics.jung.visualization declared as PickedState Modifier and Type Field Description protected PickedState<E>
BasicVisualizationServer. pickedEdgeState
holds the state of which edges of the graph are currently 'picked'protected PickedState<E>
PluggableRenderContext. pickedEdgeState
protected PickedState<V>
BasicVisualizationServer. pickedVertexState
holds the state of which vertices of the graph are currently 'picked'protected PickedState<V>
PluggableRenderContext. pickedVertexState
Methods in edu.uci.ics.jung.visualization that return PickedState Modifier and Type Method Description PickedState<E>
BasicVisualizationServer. getPickedEdgeState()
PickedState<E>
PluggableRenderContext. getPickedEdgeState()
PickedState<E>
RenderContext. getPickedEdgeState()
PickedState<E>
VisualizationServer. getPickedEdgeState()
PickedState<V>
BasicVisualizationServer. getPickedVertexState()
PickedState<V>
PluggableRenderContext. getPickedVertexState()
PickedState<V>
RenderContext. getPickedVertexState()
PickedState<V>
VisualizationServer. getPickedVertexState()
Methods in edu.uci.ics.jung.visualization with parameters of type PickedState Modifier and Type Method Description void
BasicVisualizationServer. setPickedEdgeState(PickedState<E> pickedEdgeState)
void
PluggableRenderContext. setPickedEdgeState(PickedState<E> pickedEdgeState)
void
RenderContext. setPickedEdgeState(PickedState<E> pickedEdgeState)
void
VisualizationServer. setPickedEdgeState(PickedState<E> pickedEdgeState)
void
BasicVisualizationServer. setPickedVertexState(PickedState<V> pickedVertexState)
void
PluggableRenderContext. setPickedVertexState(PickedState<V> pickedVertexState)
void
RenderContext. setPickedVertexState(PickedState<V> pickedVertexState)
void
VisualizationServer. setPickedVertexState(PickedState<V> pickedVertexState)
-
Uses of PickedState in edu.uci.ics.jung.visualization.picking
Classes in edu.uci.ics.jung.visualization.picking that implement PickedState Modifier and Type Class Description class
AbstractPickedState<T>
An abstract class to support ItemEvents for PickedStateclass
MultiPickedState<T>
Maintains the state of what has been 'picked' in the graph. -
Uses of PickedState in edu.uci.ics.jung.visualization.renderers
Constructors in edu.uci.ics.jung.visualization.renderers with parameters of type PickedState Constructor Description GradientVertexRenderer(java.awt.Color colorOne, java.awt.Color colorTwo, java.awt.Color pickedColorOne, java.awt.Color pickedColorTwo, PickedState<V> pickedState, boolean cyclic)
-