Uses of Class
edu.uci.ics.jung.graph.util.Context
-
Packages that use Context Package Description edu.uci.ics.jung.algorithms.util Provides general algorithmic utilities.edu.uci.ics.jung.graph.util Utility interfaces and classes for the JUNG API.edu.uci.ics.jung.samples Sample applications created using JUNG, largely focused on visualization.edu.uci.ics.jung.visualization Frameworks and mechanisms for visualizing JUNG graphs using Swing/AWT.edu.uci.ics.jung.visualization.decorators Mechanisms for associating data (shapes, colors, values, strings, etc.) with graph elements.edu.uci.ics.jung.visualization.picking Visualization mechanisms for supporting the selection of graph elements. -
-
Uses of Context in edu.uci.ics.jung.algorithms.util
Methods in edu.uci.ics.jung.algorithms.util with parameters of type Context Modifier and Type Method Description boolean
SelfLoopEdgePredicate. apply(Context<Graph<V,E>,E> context)
-
Uses of Context in edu.uci.ics.jung.graph.util
Fields in edu.uci.ics.jung.graph.util declared as Context Modifier and Type Field Description private static Context
Context. instance
Fields in edu.uci.ics.jung.graph.util with type parameters of type Context Modifier and Type Field Description protected java.util.Map<Context<Graph<V,E>,E>,java.lang.Integer>
DefaultParallelEdgeIndexFunction. edge_index
Methods in edu.uci.ics.jung.graph.util that return Context Modifier and Type Method Description static <G,E>
Context<G,E>Context. getInstance(G graph, E element)
-
Uses of Context in edu.uci.ics.jung.samples
Fields in edu.uci.ics.jung.samples with type parameters of type Context Modifier and Type Field Description protected com.google.common.base.Predicate<Context<Graph<java.lang.Integer,java.lang.Number>,java.lang.Number>>
PluggableRendererDemo. self_loop
(package private) com.google.common.base.Predicate<Context<Graph<V,E>,E>>
PluggableRendererDemo.GradientPickedEdgePaintFunction. selfLoop
Methods in edu.uci.ics.jung.samples with parameters of type Context Modifier and Type Method Description boolean
PluggableRendererDemo.DirectionDisplayPredicate. apply(Context<Graph<V,E>,E> context)
boolean
PluggableRendererDemo.VertexDisplayPredicate. apply(Context<Graph<V,E>,V> context)
-
Uses of Context in edu.uci.ics.jung.visualization
Fields in edu.uci.ics.jung.visualization with type parameters of type Context Modifier and Type Field Description protected com.google.common.base.Predicate<Context<Graph<V,E>,E>>
PluggableRenderContext. edgeArrowPredicate
protected com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.awt.Shape>
PluggableRenderContext. edgeArrowTransformer
protected com.google.common.base.Predicate<Context<Graph<V,E>,E>>
PluggableRenderContext. edgeIncludePredicate
protected com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.lang.Number>
PluggableRenderContext. edgeLabelClosenessTransformer
protected com.google.common.base.Predicate<Context<Graph<V,E>,V>>
PluggableRenderContext. vertexIncludePredicate
Methods in edu.uci.ics.jung.visualization that return types with arguments of type Context Modifier and Type Method Description com.google.common.base.Predicate<Context<Graph<V,E>,E>>
PluggableRenderContext. getEdgeArrowPredicate()
com.google.common.base.Predicate<Context<Graph<V,E>,E>>
RenderContext. getEdgeArrowPredicate()
com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.awt.Shape>
PluggableRenderContext. getEdgeArrowTransformer()
com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.awt.Shape>
RenderContext. getEdgeArrowTransformer()
com.google.common.base.Predicate<Context<Graph<V,E>,E>>
PluggableRenderContext. getEdgeIncludePredicate()
com.google.common.base.Predicate<Context<Graph<V,E>,E>>
RenderContext. getEdgeIncludePredicate()
com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.lang.Number>
PluggableRenderContext. getEdgeLabelClosenessTransformer()
com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.lang.Number>
RenderContext. getEdgeLabelClosenessTransformer()
com.google.common.base.Predicate<Context<Graph<V,E>,V>>
PluggableRenderContext. getVertexIncludePredicate()
com.google.common.base.Predicate<Context<Graph<V,E>,V>>
RenderContext. getVertexIncludePredicate()
Methods in edu.uci.ics.jung.visualization with parameters of type Context Modifier and Type Method Description boolean
RenderContext.DirectedEdgeArrowPredicate. apply(Context<Graph<V,E>,E> c)
boolean
RenderContext.UndirectedEdgeArrowPredicate. apply(Context<Graph<V,E>,E> c)
Method parameters in edu.uci.ics.jung.visualization with type arguments of type Context Modifier and Type Method Description void
PluggableRenderContext. setEdgeArrowPredicate(com.google.common.base.Predicate<Context<Graph<V,E>,E>> edgeArrowPredicate)
void
RenderContext. setEdgeArrowPredicate(com.google.common.base.Predicate<Context<Graph<V,E>,E>> edgeArrowPredicate)
void
PluggableRenderContext. setEdgeArrowTransformer(com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.awt.Shape> edgeArrowTransformer)
void
RenderContext. setEdgeArrowTransformer(com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.awt.Shape> edgeArrowTransformer)
void
PluggableRenderContext. setEdgeIncludePredicate(com.google.common.base.Predicate<Context<Graph<V,E>,E>> edgeIncludePredicate)
void
RenderContext. setEdgeIncludePredicate(com.google.common.base.Predicate<Context<Graph<V,E>,E>> edgeIncludePredicate)
void
PluggableRenderContext. setEdgeLabelClosenessTransformer(com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.lang.Number> edgeLabelClosenessTransformer)
void
RenderContext. setEdgeLabelClosenessTransformer(com.google.common.base.Function<? super Context<Graph<V,E>,E>,java.lang.Number> edgeLabelClosenessTransformer)
void
PluggableRenderContext. setVertexIncludePredicate(com.google.common.base.Predicate<Context<Graph<V,E>,V>> vertexIncludePredicate)
void
RenderContext. setVertexIncludePredicate(com.google.common.base.Predicate<Context<Graph<V,E>,V>> vertexIncludePredicate)
-
Uses of Context in edu.uci.ics.jung.visualization.decorators
Fields in edu.uci.ics.jung.visualization.decorators with type parameters of type Context Modifier and Type Field Description protected com.google.common.base.Predicate<Context<Graph<V,E>,E>>
GradientEdgePaintTransformer. selfLoop
Methods in edu.uci.ics.jung.visualization.decorators with parameters of type Context Modifier and Type Method Description java.lang.Number
ConstantDirectionalEdgeValueTransformer. apply(Context<Graph<V,E>,E> context)
java.awt.Shape
DirectionalEdgeArrowTransformer. apply(Context<Graph<V,E>,E> context)
-
Uses of Context in edu.uci.ics.jung.visualization.picking
Methods in edu.uci.ics.jung.visualization.picking with parameters of type Context Modifier and Type Method Description protected boolean
ShapePickSupport. isEdgeRendered(Context<Graph<V,E>,E> context)
Returnstrue
if this edge and its endpoints in this graph are all included in the collections of elements to be rendered, andfalse
otherwise.protected boolean
ShapePickSupport. isVertexRendered(Context<Graph<V,E>,V> context)
Returnstrue
if this vertex in this graph is included in the collections of elements to be rendered, andfalse
otherwise.
-