Uses of Interface
edu.uci.ics.jung.graph.util.EdgeIndexFunction
-
Packages that use EdgeIndexFunction Package Description edu.uci.ics.jung.graph.util Utility interfaces and classes for the JUNG API.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.util Utilities for graph visualization. -
-
Uses of EdgeIndexFunction in edu.uci.ics.jung.graph.util
Classes in edu.uci.ics.jung.graph.util that implement EdgeIndexFunction Modifier and Type Class Description class
DefaultParallelEdgeIndexFunction<V,E>
A class which creates and maintains indices for parallel edges.class
IncidentEdgeIndexFunction<V,E>
A class which creates and maintains indices for incident edges. -
Uses of EdgeIndexFunction in edu.uci.ics.jung.visualization
Fields in edu.uci.ics.jung.visualization declared as EdgeIndexFunction Modifier and Type Field Description protected EdgeIndexFunction<V,E>
PluggableRenderContext. incidentEdgeIndexFunction
protected EdgeIndexFunction<V,E>
PluggableRenderContext. parallelEdgeIndexFunction
Methods in edu.uci.ics.jung.visualization that return EdgeIndexFunction Modifier and Type Method Description EdgeIndexFunction<V,E>
PluggableRenderContext. getParallelEdgeIndexFunction()
EdgeIndexFunction<V,E>
RenderContext. getParallelEdgeIndexFunction()
Methods in edu.uci.ics.jung.visualization with parameters of type EdgeIndexFunction Modifier and Type Method Description void
PluggableRenderContext. setParallelEdgeIndexFunction(EdgeIndexFunction<V,E> parallelEdgeIndexFunction)
void
RenderContext. setParallelEdgeIndexFunction(EdgeIndexFunction<V,E> parallelEdgeIndexFunction)
-
Uses of EdgeIndexFunction in edu.uci.ics.jung.visualization.decorators
Fields in edu.uci.ics.jung.visualization.decorators declared as EdgeIndexFunction Modifier and Type Field Description protected EdgeIndexFunction<V,E>
ParallelEdgeShapeTransformer. edgeIndexFunction
Methods in edu.uci.ics.jung.visualization.decorators that return EdgeIndexFunction Modifier and Type Method Description EdgeIndexFunction<V,E>
ParallelEdgeShapeTransformer. getEdgeIndexFunction()
Methods in edu.uci.ics.jung.visualization.decorators with parameters of type EdgeIndexFunction Modifier and Type Method Description private int
EdgeShape. getIndex(E e, EdgeIndexFunction<V,E> edgeIndexFunction)
void
EdgeShape.BentLine. setEdgeIndexFunction(EdgeIndexFunction<V,E> edgeIndexFunction)
void
EdgeShape.CubicCurve. setEdgeIndexFunction(EdgeIndexFunction<V,E> edgeIndexFunction)
void
EdgeShape.QuadCurve. setEdgeIndexFunction(EdgeIndexFunction<V,E> parallelEdgeIndexFunction)
void
ParallelEdgeShapeTransformer. setEdgeIndexFunction(EdgeIndexFunction<V,E> edgeIndexFunction)
-
Uses of EdgeIndexFunction in edu.uci.ics.jung.visualization.util
Classes in edu.uci.ics.jung.visualization.util that implement EdgeIndexFunction Modifier and Type Class Description class
PredicatedParallelEdgeIndexFunction<V,E>
A class which creates and maintains indices for parallel edges.
-