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. pickedEdgeStateholds the state of which edges of the graph are currently 'picked'protected PickedState<E>PluggableRenderContext. pickedEdgeStateprotected PickedState<V>BasicVisualizationServer. pickedVertexStateholds the state of which vertices of the graph are currently 'picked'protected PickedState<V>PluggableRenderContext. pickedVertexStateMethods 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 voidBasicVisualizationServer. setPickedEdgeState(PickedState<E> pickedEdgeState)voidPluggableRenderContext. setPickedEdgeState(PickedState<E> pickedEdgeState)voidRenderContext. setPickedEdgeState(PickedState<E> pickedEdgeState)voidVisualizationServer. setPickedEdgeState(PickedState<E> pickedEdgeState)voidBasicVisualizationServer. setPickedVertexState(PickedState<V> pickedVertexState)voidPluggableRenderContext. setPickedVertexState(PickedState<V> pickedVertexState)voidRenderContext. setPickedVertexState(PickedState<V> pickedVertexState)voidVisualizationServer. 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 classAbstractPickedState<T>An abstract class to support ItemEvents for PickedStateclassMultiPickedState<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)
-