Package | Description |
---|---|
edu.uci.ics.jung.algorithms |
Provides a set of specialized algorithms for computing various measures on graphs as well as transforming graphs in different ways.
|
edu.uci.ics.jung.algorithms.blockmodel |
Implementations of a notion of graph equivalence for blockmodeling, and a mechanism for collapsing blocks.
|
edu.uci.ics.jung.algorithms.importance |
Provides a set of algorithms for computing the importance of each node (or edge)
in a graph relative to all others (or, for the algorithms that inherit from
RelativeAuthorityRanker , relative to a specified subset of elements). |
edu.uci.ics.jung.algorithms.shortestpath |
Provides a set of algorithms for computing the shortest path between two nodes or between each pair of nodes in a graph.
|
edu.uci.ics.jung.graph |
Specifies the interfaces for and capabilities of the JUNG vertex, edge, and graph classes.
|
edu.uci.ics.jung.graph.decorators |
Provides mechanisms for annotating nodes consistently with useful information.
|
edu.uci.ics.jung.graph.filters |
Provides for a filtering mechanism that produces subgraphs of an original graph.
|
edu.uci.ics.jung.graph.filters.impl |
Provides sample implementations and generally useful filters.
|
edu.uci.ics.jung.graph.impl |
Implementations of the JUNG vertex, edge, and graph interfaces.
|
edu.uci.ics.jung.graph.predicates |
A
Predicate tests whether an Object satisfies a specific
implementation-defined property. |
edu.uci.ics.jung.io |
Provides a set of graph file format interpreters for loading graphs from disk.
|
edu.uci.ics.jung.utils |
Provides a series of useful utility methods, and a number of custom helper classes designed specifically for this application.
|
edu.uci.ics.jung.visualization |
Provides a visualization mechanism for drawing and rendering Graphs.
|
edu.uci.ics.jung.visualization.control | |
edu.uci.ics.jung.visualization.graphdraw |
Provides support classes for the
GraphDraw mechanism: generalized functions so users can tweak variables freely when creating with EdgeDraw. |
edu.uci.ics.jung.visualization.transform.shape | |
samples.graph |
Provides sample graph code that may be of interest.
|
samples.preview_new_graphdraw |
This module provides a new way of thinking about graph drawing.
|
samples.preview_new_graphdraw.impl | |
samples.preview_new_graphdraw.impl.crooked | |
samples.preview_new_graphdraw.iter | |
samples.preview_new_graphdraw.iterablelayouts | |
samples.preview_new_graphdraw.test | |
scratch.danyel | |
scratch.danyel.lazy | |
scratch.danyel.sample | |
scratch.scott | |
test.edu.uci.ics.jung.algorithms.shortestpath |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
MatrixElementOperations.computePathData(Edge e1,
Edge e2)
If either e1 or e2 is null, the Object reference returned should be null.
|
java.lang.Object |
RealMatrixElementOperations.computePathData(Edge e1,
Edge e2) |
void |
MatrixElementOperations.mergePaths(Edge e,
java.lang.Object pathData)
If either e or pathData is null, the effect of mergePaths() is
implementation-dependent.
|
void |
RealMatrixElementOperations.mergePaths(Edge e,
java.lang.Object pathData) |
Modifier and Type | Interface and Description |
---|---|
static interface |
GraphCollapser.CollapsedEdge
The CollapsedEdge interface represents a set of edges
in some other graph.
|
Modifier and Type | Class and Description |
---|---|
class |
BipartiteGraphCollapser.CollapsedBipartiteEdge |
static class |
GraphCollapser.DirectedCollapsedEdge
This class represents a Collapsed Directed edge,
and extends DirectedSparseEdge.
|
static class |
GraphCollapser.UndirectedCollapsedEdge
This class represents a Collapsed Undirected edge,
and extends UndirectedSparseEdge.
|
Modifier and Type | Field and Description |
---|---|
Edge |
EdgeRanking.edge
The edge that was ranked.
|
Modifier and Type | Method and Description |
---|---|
protected double |
AbstractRanker.getEdgeWeight(Edge e) |
protected double |
HITSWithPriors.getInEdgeWeight(Edge e) |
protected void |
AbstractRanker.setEdgeWeight(Edge e,
double weight) |
protected void |
HITSWithPriors.setInEdgeWeight(Edge e,
double weight) |
Constructor and Description |
---|
EdgeRanking(int originalPos,
double rankScore,
Edge edge)
Simple constructor that allows all data elements to be initialized on construction.
|
Modifier and Type | Method and Description |
---|---|
Edge |
DijkstraShortestPath.getIncomingEdge(Vertex source,
Vertex target)
Returns the last edge on a shortest path from
source
to target , or null if target is not
reachable from source . |
Modifier and Type | Interface and Description |
---|---|
interface |
DirectedEdge
A type of
Edge which imposes an ordering on its incident
vertices. |
interface |
UndirectedEdge
A tagging interface for implementations of
Edge that do not
impose an ordering on their incident vertices. |
Modifier and Type | Method and Description |
---|---|
Edge |
Graph.addEdge(Edge e)
Adds
e to this graph, and returns a reference to the
added vertex. |
Edge |
Vertex.findEdge(Vertex v)
Returns a directed outgoing edge from this vertex to
v ,
or an undirected edge that connects this vertex to v . |
Modifier and Type | Method and Description |
---|---|
Edge |
Graph.addEdge(Edge e)
Adds
e to this graph, and returns a reference to the
added vertex. |
boolean |
Vertex.isDest(Edge e)
Returns
true if this vertex is a destination of
the specified edge e , and false otherwise. |
boolean |
Vertex.isSource(Edge e)
Returns
true if this vertex is a source of
the specified edge e , and false otherwise. |
void |
Graph.removeEdge(Edge e)
Removes
e from this graph. |
Modifier and Type | Method and Description |
---|---|
java.awt.Shape |
DirectionalEdgeArrowFunction.getArrow(Edge e) |
java.awt.Shape |
EdgeArrowFunction.getArrow(Edge e) |
protected java.awt.Color |
GradientEdgePaintFunction.getColor1(Edge e)
Returns
c1 . |
protected java.awt.Color |
GradientEdgePaintFunction.getColor2(Edge e)
Returns
c2 . |
java.awt.Paint |
ConstantEdgePaintFunction.getDrawPaint(Edge e) |
java.awt.Paint |
EdgePaintFunction.getDrawPaint(Edge e) |
java.awt.Paint |
GradientEdgePaintFunction.getDrawPaint(Edge e) |
java.awt.Paint |
PickableEdgePaintFunction.getDrawPaint(Edge e) |
java.awt.Color |
ConstantEdgeColorFunction.getEdgeColor(Edge e)
Deprecated.
|
java.awt.Color |
EdgeColorFunction.getEdgeColor(Edge e)
Deprecated.
|
float |
EdgeThicknessFunction.getEdgeThickness(Edge e)
Deprecated.
|
java.awt.Paint |
AbstractEdgePaintFunction.getFillPaint(Edge e) |
java.awt.Paint |
ConstantEdgePaintFunction.getFillPaint(Edge e) |
java.awt.Paint |
EdgePaintFunction.getFillPaint(Edge e) |
java.awt.Font |
ConstantEdgeFontFunction.getFont(Edge e) |
java.awt.Font |
EdgeFontFunction.getFont(Edge e) |
java.awt.Shape |
EdgeShape.Line.getShape(Edge e)
Get the shape for this edge, returning either the
shared instance or, in the case of self-loop edges, the
SimpleLoop shared instance.
|
java.awt.Shape |
EdgeShape.BentLine.getShape(Edge e)
Get the shape for this edge, returning either the
shared instance or, in the case of self-loop edges, the
Loop shared instance.
|
java.awt.Shape |
EdgeShape.QuadCurve.getShape(Edge e)
Get the shape for this edge, returning either the
shared instance or, in the case of self-loop edges, the
Loop shared instance.
|
java.awt.Shape |
EdgeShape.CubicCurve.getShape(Edge e)
Get the shape for this edge, returning either the
shared instance or, in the case of self-loop edges, the
Loop shared instance.
|
java.awt.Shape |
EdgeShape.SimpleLoop.getShape(Edge e)
getter for the shape
|
java.awt.Shape |
EdgeShape.Loop.getShape(Edge e)
Get the shape for this edge, modifying the diameter in the
case of parallel edges, so they do not overlap
|
java.awt.Shape |
EdgeShape.Wedge.getShape(Edge e) |
java.awt.Shape |
EdgeShapeFunction.getShape(Edge e)
Returns the
Shape associated with e . |
java.awt.Stroke |
ConstantEdgeStrokeFunction.getStroke(Edge e) |
java.awt.Stroke |
EdgeStrokeFunction.getStroke(Edge e) |
java.lang.String |
DefaultToolTipFunction.getToolTipText(Edge e) |
java.lang.String |
ToolTipFunction.getToolTipText(Edge e) |
java.lang.String |
ToolTipFunctionAdapter.getToolTipText(Edge e) |
Modifier and Type | Method and Description |
---|---|
boolean |
EdgePredicateFilter.acceptEdge(Edge e) |
abstract boolean |
GeneralEdgeAcceptFilter.acceptEdge(Edge edge)
Determines whether the current edge should be accepted
into the Graph.
|
Modifier and Type | Method and Description |
---|---|
boolean |
WeightedEdgeGraphFilter.acceptEdge(Edge e) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractSparseEdge
This class provides a skeletal implementation of the
Edge
interface to minimize the effort required to implement this interface. |
class |
BipartiteEdge
A simple extension of the UndirectedSparseEdge, except
with careful bounds checking.
|
class |
DirectedSparseEdge
An implementation of
DirectedEdge that resides in a
directed graph. |
class |
UndirectedSparseEdge
An implementation of
UndirectedEdge that resides
in an undirected graph. |
Modifier and Type | Method and Description |
---|---|
Edge |
AbstractSparseGraph.addEdge(Edge e) |
Edge |
BipartiteGraph.addEdge(Edge ae)
Deprecated.
Use addBipartiteEdge
|
Edge |
SparseTree.addEdge(Edge e) |
Edge |
AbstractSparseVertex.findEdge(Vertex v)
Returns the edge that connects this vertex to the specified
vertex
v . |
Edge |
DirectedSparseVertex.findEdge(Vertex v)
Returns the edge that connects this
vertex to the specified vertex
v , or
null if there is no such edge. |
Edge |
SimpleDirectedSparseVertex.findEdge(Vertex v)
Returns the edge that connects this
vertex to the specified vertex
v , or
null if there is no such edge. |
Edge |
SimpleSparseVertex.findEdge(Vertex v) |
Edge |
SimpleUndirectedSparseVertex.findEdge(Vertex v)
Returns the edge that connects this
vertex to the specified vertex
v , or
null if there is no such edge. |
Edge |
SparseVertex.findEdge(Vertex v)
Returns the edge that connects this
vertex to the specified vertex
v , or
null if there is no such edge. |
Edge |
UndirectedSparseVertex.findEdge(Vertex v)
Returns the edge that connects this
vertex to the specified vertex
v , or
null if there is no such edge. |
Modifier and Type | Method and Description |
---|---|
Edge |
AbstractSparseGraph.addEdge(Edge e) |
Edge |
BipartiteGraph.addEdge(Edge ae)
Deprecated.
Use addBipartiteEdge
|
Edge |
SparseTree.addEdge(Edge e) |
protected abstract void |
AbstractSparseVertex.addNeighbor_internal(Edge e,
Vertex v)
Adds the specified edge
e and vertex v
to the internal data structures of this vertex. |
protected void |
DirectedSparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
protected void |
LeanSparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
protected void |
SimpleDirectedSparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
protected void |
SimpleSparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
protected void |
SimpleUndirectedSparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
protected void |
SparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
protected void |
UndirectedSparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
boolean |
LeanSparseVertex.isDest(Edge e) |
boolean |
SimpleDirectedSparseVertex.isDest(Edge e) |
boolean |
SimpleSparseVertex.isDest(Edge e) |
boolean |
SimpleUndirectedSparseVertex.isDest(Edge e) |
boolean |
LeanSparseVertex.isSource(Edge e) |
boolean |
SimpleDirectedSparseVertex.isSource(Edge e) |
boolean |
SimpleSparseVertex.isSource(Edge e) |
boolean |
SimpleUndirectedSparseVertex.isSource(Edge e) |
void |
AbstractSparseGraph.removeEdge(Edge e)
Removes the edge from the graph, and notifies that the edge and its
incident vertices that it has been removed.
|
protected abstract void |
AbstractSparseVertex.removeNeighbor_internal(Edge e,
Vertex v)
Removes the specified edge
e and vertex v
from the internal data structures of this vertex. |
protected void |
DirectedSparseVertex.removeNeighbor_internal(Edge e,
Vertex v) |
protected void |
LeanSparseVertex.removeNeighbor_internal(Edge e,
Vertex v) |
protected void |
SimpleDirectedSparseVertex.removeNeighbor_internal(Edge e,
Vertex v) |
protected void |
SimpleSparseVertex.removeNeighbor_internal(Edge e,
Vertex v) |
protected void |
SimpleUndirectedSparseVertex.removeNeighbor_internal(Edge connectingEdge,
Vertex neighbor)
Removes the neighbor from this vertex's internal map.
|
protected void |
SparseVertex.removeNeighbor_internal(Edge e,
Vertex v) |
protected void |
UndirectedSparseVertex.removeNeighbor_internal(Edge e,
Vertex v) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
ParallelEdgePredicate.isDirected(Edge e) |
Modifier and Type | Method and Description |
---|---|
protected Edge |
PajekNetReader.createAddEdge(java.util.StringTokenizer st,
Vertex v1,
boolean directed,
Graph g,
Indexer id,
boolean parallel_ok) |
protected Edge |
GraphMLFileHandler.createEdge(java.util.Map attributeMap) |
Modifier and Type | Method and Description |
---|---|
static Edge |
GraphUtils.addEdge(Graph g,
Vertex v1,
Vertex v2)
Adds an appropriate edge between two vertices.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Integer |
DefaultParallelEdgeIndexFunction.getIndex_internal(Edge e) |
protected java.lang.Integer |
ParallelEdgeIndexSingleton.getIndex_internal(Edge e,
Graph g) |
int |
DefaultParallelEdgeIndexFunction.getIndex(Edge e)
Returns the index for the specified edge.
|
int |
ParallelEdgeIndexFunction.getIndex(Edge e) |
int |
ParallelEdgeIndexSingleton.getIndex(Edge e)
Returns the index for the specified edge.
|
void |
DefaultParallelEdgeIndexFunction.reset(Edge e)
Resets the indices for this edge and its parallel edges.
|
void |
ParallelEdgeIndexSingleton.reset(Edge e)
Resets the indices for this edge and its parallel edges.
|
Modifier and Type | Method and Description |
---|---|
Edge |
AbstractLayout.getEdge(double x,
double y)
Deprecated.
Use PickSupport instead
|
Edge |
GraphElementAccessor.getEdge(double x,
double y)
Returns an
Edge which is associated with the
location (x,y) . |
Edge |
RadiusGraphElementAccessor.getEdge(double x,
double y)
Gets the edge nearest to the location of the (x,y) location selected.
|
Edge |
RadiusPickSupport.getEdge(double x,
double y)
Gets the edge nearest to the location of the (x,y) location selected.
|
Edge |
ShapePickSupport.getEdge(double x,
double y)
return an edge whose shape intersects the 'pickArea' footprint of the passed
x,y, coordinates.
|
Edge |
AbstractLayout.getEdge(double x,
double y,
double maxDistance)
Deprecated.
Use PickSupport instead
|
Edge |
RadiusGraphElementAccessor.getEdge(double x,
double y,
double maxDistance)
Gets the edge nearest to the location of the (x,y) location selected,
within a distance of maxDistance, Iterates through all
visible edges and checks their distance from the click.
|
Edge |
RadiusPickSupport.getEdge(double x,
double y,
double maxDistance)
Gets the edge nearest to the location of the (x,y) location selected,
within a distance of maxDistance, Iterates through all
visible edges and checks their distance from the click.
|
Modifier and Type | Method and Description |
---|---|
void |
FRLayout.calcAttraction(Edge e) |
protected void |
PluggableRenderer.drawSimpleEdge(java.awt.Graphics2D g,
Edge e,
int x1,
int y1,
int x2,
int y2)
Draws the edge
e , whose endpoints are at (x1,y1)
and (x2,y2) , on the graphics context g . |
protected Vertex |
AbstractLayout.getAVertex(Edge e)
Utility method, gets a single vertex from this edge.
|
protected Vertex |
SpringLayout.getAVertex(Edge e) |
java.awt.Paint |
EdgeColorToEdgePaintFunctionConverter.getDrawPaint(Edge e)
Deprecated.
|
java.awt.Component |
DefaultGraphLabelRenderer.getGraphLabelRendererComponent(javax.swing.JComponent vv,
java.lang.Object value,
java.awt.Font font,
boolean isSelected,
Edge edge)
Returns the default label renderer for an Edge
|
java.awt.Component |
GraphLabelRenderer.getGraphLabelRendererComponent(javax.swing.JComponent vv,
java.lang.Object value,
java.awt.Font font,
boolean isSelected,
Edge edge)
Returns the component used for drawing the label.
|
double |
SpringLayout.getLength(Edge e) |
double |
SpringLayout.LengthFunction.getLength(Edge e) |
double |
SpringLayout.UnitLengthFunction.getLength(Edge e) |
SpringLayout.SpringEdgeData |
SpringLayout.getSpringData(Edge e) |
java.awt.Stroke |
EdgeThicknessToEdgeStrokeFunctionConverter.getStroke(Edge e) |
boolean |
MultiPickedState.isPicked(Edge e) |
boolean |
VisualizationViewer.isPicked(Edge e)
Deprecated.
Use
getPickedState.isPicked(e) . |
protected void |
PluggableRenderer.labelEdge(java.awt.Graphics2D g2d,
Edge e,
java.lang.String label,
int x1,
int x2,
int y1,
int y2)
Labels the specified non-self-loop edge with the specified label.
|
abstract void |
AbstractRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2) |
void |
PluggableRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2)
Paints
e , whose endpoints are at (x1,y1)
and (x2,y2) , on the graphics context g . |
void |
Renderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2) |
java.awt.Component |
PluggableRenderer.prepareRenderer(GraphLabelRenderer renderer,
java.lang.Object value,
boolean isSelected,
Edge edge) |
Constructor and Description |
---|
SpringLayout.SpringEdgeData(Edge e) |
Modifier and Type | Field and Description |
---|---|
protected Edge |
PickingGraphMousePlugin.edge
the picked Edge, if any
|
Modifier and Type | Method and Description |
---|---|
protected void |
SettableRenderer.drawArrowhead(java.awt.Graphics2D g2d,
Edge e,
int xsource,
int ysource,
int xdest,
int ydest)
Deprecated.
Draws an arrowhead on this edge in the direction from xsource,ysource to
xend, yend
|
protected void |
SettableRenderer.drawEdge(float edgeWidth,
java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2)
Deprecated.
Draws the edge at the given width, then restores the previous stroke.
|
protected void |
SettableRenderer.drawEdgeSimple(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2)
Deprecated.
|
void |
SettableRenderer.labelEdge(java.awt.Graphics2D g2d,
Edge e,
java.lang.String label,
int x1,
int x2,
int y1,
int y2)
Deprecated.
Labels the edge at the half-way point (if undirected) or three-quarters
if directed or 15 pixels above the vertex if self-loop.
|
void |
SettableRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2)
Deprecated.
Paints the edge in the color specified by the EdgeColorFunction or the
hard-set color, and at the thickness set with an
EdgeThicknessFunction.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TransformingPluggableRenderer.drawSimpleEdge(java.awt.Graphics2D g,
Edge e,
int x1,
int y1,
int x2,
int y2)
(non-Javadoc)
override to wrap the passed Graphics2D in my TransformingGraphics,
then call overloaded drawSimpleEdge
|
protected void |
TransformingPluggableRenderer.drawSimpleEdge(TransformingGraphics g,
Edge e,
int x1,
int y1,
int x2,
int y2)
overloaded to use TransformingGraphics
|
protected void |
TransformingPluggableRenderer.labelEdge(java.awt.Graphics2D g2d,
Edge e,
java.lang.String label,
int x1,
int x2,
int y1,
int y2)
overridden to wrap passed Graphics2D in my TransformingGraphics, then call
overloaded labelEdge
|
protected void |
TransformingPluggableRenderer.labelEdge(TransformingGraphics g2d,
Edge e,
java.lang.String label,
int x1,
int x2,
int y1,
int y2)
overloaded to use TransformingGraphics
|
void |
PluggableRendererDecorator.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2) |
void |
TransformingPluggableRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2)
overridded to wrap passed Graphics in TransformingGraphics then call
overloaded paintEdge
|
void |
TransformingPluggableRenderer.paintEdge(TransformingGraphics g2d,
Edge e,
int x1,
int y1,
int x2,
int y2)
overloaded to use TransformingGraphics
|
java.awt.Component |
PluggableRendererDecorator.prepareRenderer(GraphLabelRenderer renderer,
java.lang.Object value,
boolean isSelected,
Edge edge) |
Modifier and Type | Method and Description |
---|---|
protected java.awt.Color |
PluggableRendererDemo.GradientPickedEdgePaintFunction.getColor2(Edge e) |
java.awt.Paint |
PluggableRendererDemo.GradientPickedEdgePaintFunction.getDrawPaint(Edge e) |
java.awt.Paint |
ShortestPathDemo.MyEdgePaintFunction.getDrawPaint(Edge e) |
java.awt.Paint |
PluggableRendererDemo.GradientPickedEdgePaintFunction.getFillPaint(Edge e) |
java.awt.Stroke |
ShortestPathDemo.MyEdgeStrokeFunction.getStroke(Edge e) |
java.lang.String |
PluggableRendererDemo.VoltageTips.getToolTipText(Edge edge) |
void |
BasicRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2) |
Modifier and Type | Field and Description |
---|---|
protected Edge |
VisEdge.mEdge |
Modifier and Type | Method and Description |
---|---|
Edge |
VisEdge.getEdge()
Returns the
Edge which this VisEdge
represents. |
Edge |
EmittedLayout.getNearestEdge(double x,
double y) |
Modifier and Type | Method and Description |
---|---|
protected VisEdge |
StaticLayout.createVisEdge(Edge e,
VisVertex vv1,
VisVertex vv2) |
VisEdge |
AbstractLayout.getVisEdge(Edge e) |
VisEdge |
EmittedLayout.getVisEdge(Edge e) |
Constructor and Description |
---|
VisEdge(Edge e,
VisVertex v1,
VisVertex v2) |
Modifier and Type | Method and Description |
---|---|
protected void |
GraphLayoutPanelMouseListener.fireEdgeEvent(Edge e,
double dist_to_closest_edge,
java.awt.event.MouseEvent me) |
Modifier and Type | Method and Description |
---|---|
protected VisEdge |
CrookedSpringLayout.createVisEdge(Edge ve,
VisVertex front,
VisVertex back) |
Constructor and Description |
---|
CrookedSpringLayout.CrookedSpringEdge(Edge ve,
VisVertex front,
VisVertex back) |
Modifier and Type | Method and Description |
---|---|
protected VisEdge |
UpdatableIterableLayout.addVisEdge(Edge e)
Creates and returns a default VisEdge based on
e . |
protected VisEdge |
IterableLayout.getVisEdge(Edge e) |
protected void |
UpdatableIterableLayout.removeEdge(Edge e)
Removes
e from the layout. |
Modifier and Type | Method and Description |
---|---|
protected VisEdge |
SpringLayout.addVisEdge(Edge e) |
protected VisEdge |
SpringLayout.createVisEdge(Edge ve,
VisVertex front,
VisVertex back) |
protected Vertex |
SpringLayout.getAVertex(Edge e) |
double |
SpringLayout.getLength(Edge e) |
Constructor and Description |
---|
SpringLayout.SpringEdge(Edge e,
VisVertex v1,
VisVertex v2) |
Constructor and Description |
---|
CircleEdge(Edge ve,
VisVertex front,
VisVertex back) |
Modifier and Type | Method and Description |
---|---|
boolean |
DemoTemporalRenderer.TimeFunc.acceptEdge(Edge edge) |
boolean |
TemporalFunction.acceptEdge(Edge edge) |
Modifier and Type | Method and Description |
---|---|
Edge |
LazySparseVertexFactory.getEdge(java.lang.Object id1,
java.lang.Object id2)
Returns an edge running between these two vertices.
|
protected Edge |
LazySparseVertexFactory.getLazyEdge(Vertex v1,
Vertex v2)
Returns the (unqiue) edge connected vertices 1 and 2.
|
Modifier and Type | Method and Description |
---|---|
protected void |
LazySparseVertex.addNeighbor_internal(Edge e,
Vertex v) |
Modifier and Type | Method and Description |
---|---|
protected Vertex |
CircleLayout.getAVertex(Edge e) |
double |
CircleLayout.LengthFunction.getLength(Edge e) |
CircleLayout.CircleEdgeData |
CircleLayout.getSpringData(Edge e) |
void |
FadeRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2) |
void |
SimpleRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2) |
Constructor and Description |
---|
CircleLayout.CircleEdgeData(Edge e) |
Modifier and Type | Method and Description |
---|---|
protected Vertex |
AestheticSpringVisualizer.getAVertex(Edge e) |
double |
AestheticSpringVisualizer.getLength(Edge e) |
double |
AestheticSpringVisualizer.LengthFunction.getLength(Edge e) |
AestheticSpringVisualizer.SpringEdgeData |
AestheticSpringVisualizer.getSpringData(Edge e) |
void |
BasicRenderer.paintEdge(java.awt.Graphics g,
Edge e,
int x1,
int y1,
int x2,
int y2) |
Constructor and Description |
---|
AestheticSpringVisualizer.SpringEdgeData(Edge e) |
Modifier and Type | Method and Description |
---|---|
void |
TestShortestPath.addEdges(Graph g,
Edge[] edge_array) |