Uses of Interface
org.jungrapht.visualization.selection.MutableSelectedState
-
Packages that use MutableSelectedState Package Description org.jungrapht.visualization Frameworks and mechanisms for visualizing JUNGRAPHT graphs using Swing/AWT.org.jungrapht.visualization.renderers Visualization mechanisms relating to rendering.org.jungrapht.visualization.selection Visualization mechanisms for supporting the selection of graph elements. -
-
Uses of MutableSelectedState in org.jungrapht.visualization
Fields in org.jungrapht.visualization declared as MutableSelectedState Modifier and Type Field Description protected MutableSelectedState<E>
DefaultRenderContext. selectedEdgeState
Holds asubset of edges that are selectedprotected MutableSelectedState<E>
DefaultVisualizationServer. selectedEdgeState
holds the state of which edges of the graph are currently 'selected'protected MutableSelectedState<E>
DefaultVisualizationServer. selectedEdgeState
holds the state of which edges of the graph are currently 'selected'protected MutableSelectedState<E>
DefaultVisualizationServer. selectedEdgeState
holds the state of which edges of the graph are currently 'selected'protected MutableSelectedState<E>
DefaultVisualizationServer. selectedEdgeState
holds the state of which edges of the graph are currently 'selected'protected MutableSelectedState<E>
DefaultVisualizationServer. selectedEdgeState
holds the state of which edges of the graph are currently 'selected'protected MutableSelectedState<V>
DefaultRenderContext. selectedVertexState
Holds a subset of vertices that are selectedprotected MutableSelectedState<V>
DefaultVisualizationServer. selectedVertexState
holds the state of which vertices of the graph are currently 'selected'protected MutableSelectedState<V>
DefaultVisualizationServer. selectedVertexState
holds the state of which vertices of the graph are currently 'selected'protected MutableSelectedState<V>
DefaultVisualizationServer. selectedVertexState
holds the state of which vertices of the graph are currently 'selected'protected MutableSelectedState<V>
DefaultVisualizationServer. selectedVertexState
holds the state of which vertices of the graph are currently 'selected'protected MutableSelectedState<V>
DefaultVisualizationServer. selectedVertexState
holds the state of which vertices of the graph are currently 'selected'Methods in org.jungrapht.visualization that return MutableSelectedState Modifier and Type Method Description MutableSelectedState<E>
DefaultRenderContext. getSelectedEdgeState()
MutableSelectedState<E>
RenderContext. getSelectedEdgeState()
MutableSelectedState<E>
VisualizationServer. getSelectedEdgeState()
MutableSelectedState<V>
DefaultRenderContext. getSelectedVertexState()
MutableSelectedState<V>
RenderContext. getSelectedVertexState()
MutableSelectedState<V>
VisualizationServer. getSelectedVertexState()
Methods in org.jungrapht.visualization with parameters of type MutableSelectedState Modifier and Type Method Description void
DefaultRenderContext. setSelectedEdgeState(MutableSelectedState<E> pickedEdgeState)
void
RenderContext. setSelectedEdgeState(MutableSelectedState<E> selectedEdgeState)
void
VisualizationServer. setSelectedEdgeState(MutableSelectedState<E> selectedEdgeState)
void
DefaultRenderContext. setSelectedVertexState(MutableSelectedState<V> pickedVertexState)
void
RenderContext. setSelectedVertexState(MutableSelectedState<V> selectedVertexState)
void
VisualizationServer. setSelectedVertexState(MutableSelectedState<V> selectedVertexState)
-
Uses of MutableSelectedState in org.jungrapht.visualization.renderers
Constructors in org.jungrapht.visualization.renderers with parameters of type MutableSelectedState Constructor Description GradientVertexRenderer(MutableSelectedState<V> mutableSelectedState, Color colorOne, Color colorTwo, Color pickedColorOne, Color pickedColorTwo, boolean cyclic)
-
Uses of MutableSelectedState in org.jungrapht.visualization.selection
Subinterfaces of MutableSelectedState in org.jungrapht.visualization.selection Modifier and Type Interface Description interface
MutableSelectedStateSink<T>
An interface for classes that keep track of the selected state of T objects.Classes in org.jungrapht.visualization.selection that implement MutableSelectedState Modifier and Type Class Description class
AbstractMutableSelectedState<T>
An abstract class to support ItemEvents forMutableSelectedState
class
MultiMutableSelectedState<T>
Maintains the state of what has been 'selected' in the graph.class
VertexEndpointsSelectedEdgeSelectedState<V,E>
Maintains the state of what edges have been 'selected' in the graph based on whether both endpoints are selectedConstructors in org.jungrapht.visualization.selection with parameters of type MutableSelectedState Constructor Description VertexEndpointsSelectedEdgeSelectedState(Supplier<org.jgrapht.Graph<V,E>> graphSupplier, MutableSelectedState<V> selectedVertexState)
-