Uses of Interface
edu.uci.ics.jung.graph.Edge

Packages that use Edge
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   
 

Uses of Edge in edu.uci.ics.jung.algorithms
 

Methods in edu.uci.ics.jung.algorithms with parameters of type Edge
 Object MatrixElementOperations.computePathData(Edge e1, Edge e2)
          If either e1 or e2 is null, the Object reference returned should be null.
 Object RealMatrixElementOperations.computePathData(Edge e1, Edge e2)
           
 void MatrixElementOperations.mergePaths(Edge e, Object pathData)
          If either e or pathData is null, the effect of mergePaths() is implementation-dependent.
 void RealMatrixElementOperations.mergePaths(Edge e, Object pathData)
           
 

Uses of Edge in edu.uci.ics.jung.algorithms.blockmodel
 

Subinterfaces of Edge in edu.uci.ics.jung.algorithms.blockmodel
static interface GraphCollapser.CollapsedEdge
          The CollapsedEdge interface represents a set of edges in some other graph.
 

Classes in edu.uci.ics.jung.algorithms.blockmodel that implement Edge
 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.
 

Uses of Edge in edu.uci.ics.jung.algorithms.importance
 

Fields in edu.uci.ics.jung.algorithms.importance declared as Edge
 Edge EdgeRanking.edge
          The edge that was ranked.
 

Methods in edu.uci.ics.jung.algorithms.importance with parameters of type Edge
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)
           
 

Constructors in edu.uci.ics.jung.algorithms.importance with parameters of type Edge
EdgeRanking(int originalPos, double rankScore, Edge edge)
          Simple constructor that allows all data elements to be initialized on construction.
 

Uses of Edge in edu.uci.ics.jung.algorithms.shortestpath
 

Methods in edu.uci.ics.jung.algorithms.shortestpath that return Edge
 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.
 

Uses of Edge in edu.uci.ics.jung.graph
 

Subinterfaces of Edge in edu.uci.ics.jung.graph
 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.
 

Methods in edu.uci.ics.jung.graph that return Edge
 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.
 

Methods in edu.uci.ics.jung.graph with parameters of type Edge
 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.
 

Uses of Edge in edu.uci.ics.jung.graph.decorators
 

Methods in edu.uci.ics.jung.graph.decorators with parameters of type Edge
 Shape DirectionalEdgeArrowFunction.getArrow(Edge e)
           
 Shape EdgeArrowFunction.getArrow(Edge e)
           
protected  Color GradientEdgePaintFunction.getColor1(Edge e)
          Returns c1.
protected  Color GradientEdgePaintFunction.getColor2(Edge e)
          Returns c2.
 Paint ConstantEdgePaintFunction.getDrawPaint(Edge e)
           
 Paint EdgePaintFunction.getDrawPaint(Edge e)
           
 Paint GradientEdgePaintFunction.getDrawPaint(Edge e)
           
 Paint PickableEdgePaintFunction.getDrawPaint(Edge e)
           
 Color ConstantEdgeColorFunction.getEdgeColor(Edge e)
          Deprecated.  
 Color EdgeColorFunction.getEdgeColor(Edge e)
          Deprecated.  
 float EdgeThicknessFunction.getEdgeThickness(Edge e)
          Deprecated.  
 Paint AbstractEdgePaintFunction.getFillPaint(Edge e)
           
 Paint ConstantEdgePaintFunction.getFillPaint(Edge e)
           
 Paint EdgePaintFunction.getFillPaint(Edge e)
           
 Font ConstantEdgeFontFunction.getFont(Edge e)
           
 Font EdgeFontFunction.getFont(Edge e)
           
 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.
 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.
 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.
 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.
 Shape EdgeShape.SimpleLoop.getShape(Edge e)
          getter for the shape
 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
 Shape EdgeShape.Wedge.getShape(Edge e)
           
 Shape EdgeShapeFunction.getShape(Edge e)
          Returns the Shape associated with e.
 Stroke ConstantEdgeStrokeFunction.getStroke(Edge e)
           
 Stroke EdgeStrokeFunction.getStroke(Edge e)
           
 String DefaultToolTipFunction.getToolTipText(Edge e)
           
 String ToolTipFunction.getToolTipText(Edge e)
           
 String ToolTipFunctionAdapter.getToolTipText(Edge e)
           
 

Uses of Edge in edu.uci.ics.jung.graph.filters
 

Methods in edu.uci.ics.jung.graph.filters with parameters of type Edge
 boolean EdgePredicateFilter.acceptEdge(Edge e)
           
abstract  boolean GeneralEdgeAcceptFilter.acceptEdge(Edge edge)
          Determines whether the current edge should be accepted into the Graph.
 

Uses of Edge in edu.uci.ics.jung.graph.filters.impl
 

Methods in edu.uci.ics.jung.graph.filters.impl with parameters of type Edge
 boolean WeightedEdgeGraphFilter.acceptEdge(Edge e)
           
 

Uses of Edge in edu.uci.ics.jung.graph.impl
 

Classes in edu.uci.ics.jung.graph.impl that implement Edge
 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.
 

Methods in edu.uci.ics.jung.graph.impl that return Edge
 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.
 

Methods in edu.uci.ics.jung.graph.impl with parameters of type Edge
 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)
           
 

Uses of Edge in edu.uci.ics.jung.graph.predicates
 

Methods in edu.uci.ics.jung.graph.predicates with parameters of type Edge
protected  boolean ParallelEdgePredicate.isDirected(Edge e)
           
 

Uses of Edge in edu.uci.ics.jung.io
 

Methods in edu.uci.ics.jung.io that return Edge
protected  Edge PajekNetReader.createAddEdge(StringTokenizer st, Vertex v1, boolean directed, Graph g, Indexer id, boolean parallel_ok)
           
protected  Edge GraphMLFileHandler.createEdge(Map attributeMap)
           
 

Uses of Edge in edu.uci.ics.jung.utils
 

Methods in edu.uci.ics.jung.utils that return Edge
static Edge GraphUtils.addEdge(Graph g, Vertex v1, Vertex v2)
          Adds an appropriate edge between two vertices.
 

Methods in edu.uci.ics.jung.utils with parameters of type Edge
protected  Integer DefaultParallelEdgeIndexFunction.getIndex_internal(Edge e)
           
protected  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.
 

Uses of Edge in edu.uci.ics.jung.visualization
 

Methods in edu.uci.ics.jung.visualization that return Edge
 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.
 

Methods in edu.uci.ics.jung.visualization with parameters of type Edge
 void FRLayout.calcAttraction(Edge e)
           
protected  void PluggableRenderer.drawSimpleEdge(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)
           
 Paint EdgeColorToEdgePaintFunctionConverter.getDrawPaint(Edge e)
          Deprecated.  
 Component DefaultGraphLabelRenderer.getGraphLabelRendererComponent(JComponent vv, Object value, Font font, boolean isSelected, Edge edge)
          Returns the default label renderer for an Edge
 Component GraphLabelRenderer.getGraphLabelRendererComponent(JComponent vv, Object value, 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)
           
 Stroke EdgeThicknessToEdgeStrokeFunctionConverter.getStroke(Edge e)
           
 boolean MultiPickedState.isPicked(Edge e)
           
 boolean VisualizationViewer.isPicked(Edge e)
          Deprecated. Use getPickedState.isPicked(e).
protected  void PluggableRenderer.labelEdge(Graphics2D g2d, Edge e, 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(Graphics g, Edge e, int x1, int y1, int x2, int y2)
           
 void PluggableRenderer.paintEdge(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(Graphics g, Edge e, int x1, int y1, int x2, int y2)
           
 Component PluggableRenderer.prepareRenderer(GraphLabelRenderer renderer, Object value, boolean isSelected, Edge edge)
           
 

Constructors in edu.uci.ics.jung.visualization with parameters of type Edge
SpringLayout.SpringEdgeData(Edge e)
           
 

Uses of Edge in edu.uci.ics.jung.visualization.control
 

Fields in edu.uci.ics.jung.visualization.control declared as Edge
protected  Edge PickingGraphMousePlugin.edge
          the picked Edge, if any
 

Uses of Edge in edu.uci.ics.jung.visualization.graphdraw
 

Methods in edu.uci.ics.jung.visualization.graphdraw with parameters of type Edge
protected  void SettableRenderer.drawArrowhead(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, 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(Graphics g, Edge e, int x1, int y1, int x2, int y2)
          Deprecated.  
 void SettableRenderer.labelEdge(Graphics2D g2d, Edge e, 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(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.
 

Uses of Edge in edu.uci.ics.jung.visualization.transform.shape
 

Methods in edu.uci.ics.jung.visualization.transform.shape with parameters of type Edge
protected  void TransformingPluggableRenderer.drawSimpleEdge(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(Graphics2D g2d, Edge e, 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, String label, int x1, int x2, int y1, int y2)
          overloaded to use TransformingGraphics
 void PluggableRendererDecorator.paintEdge(Graphics g, Edge e, int x1, int y1, int x2, int y2)
           
 void TransformingPluggableRenderer.paintEdge(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
 Component PluggableRendererDecorator.prepareRenderer(GraphLabelRenderer renderer, Object value, boolean isSelected, Edge edge)
           
 

Uses of Edge in samples.graph
 

Methods in samples.graph with parameters of type Edge
protected  Color PluggableRendererDemo.GradientPickedEdgePaintFunction.getColor2(Edge e)
           
 Paint PluggableRendererDemo.GradientPickedEdgePaintFunction.getDrawPaint(Edge e)
           
 Paint ShortestPathDemo.MyEdgePaintFunction.getDrawPaint(Edge e)
           
 Paint PluggableRendererDemo.GradientPickedEdgePaintFunction.getFillPaint(Edge e)
           
 Stroke ShortestPathDemo.MyEdgeStrokeFunction.getStroke(Edge e)
           
 String PluggableRendererDemo.VoltageTips.getToolTipText(Edge edge)
           
 void BasicRenderer.paintEdge(Graphics g, Edge e, int x1, int y1, int x2, int y2)
           
 

Uses of Edge in samples.preview_new_graphdraw
 

Fields in samples.preview_new_graphdraw declared as Edge
protected  Edge VisEdge.mEdge
           
 

Methods in samples.preview_new_graphdraw that return Edge
 Edge VisEdge.getEdge()
          Returns the Edge which this VisEdge represents.
 Edge EmittedLayout.getNearestEdge(double x, double y)
           
 

Methods in samples.preview_new_graphdraw with parameters of type Edge
protected  VisEdge StaticLayout.createVisEdge(Edge e, VisVertex vv1, VisVertex vv2)
           
 VisEdge AbstractLayout.getVisEdge(Edge e)
           
 VisEdge EmittedLayout.getVisEdge(Edge e)
           
 

Constructors in samples.preview_new_graphdraw with parameters of type Edge
VisEdge(Edge e, VisVertex v1, VisVertex v2)
           
 

Uses of Edge in samples.preview_new_graphdraw.impl
 

Methods in samples.preview_new_graphdraw.impl with parameters of type Edge
protected  void GraphLayoutPanelMouseListener.fireEdgeEvent(Edge e, double dist_to_closest_edge, MouseEvent me)
           
 

Uses of Edge in samples.preview_new_graphdraw.impl.crooked
 

Methods in samples.preview_new_graphdraw.impl.crooked with parameters of type Edge
protected  VisEdge CrookedSpringLayout.createVisEdge(Edge ve, VisVertex front, VisVertex back)
           
 

Constructors in samples.preview_new_graphdraw.impl.crooked with parameters of type Edge
CrookedSpringLayout.CrookedSpringEdge(Edge ve, VisVertex front, VisVertex back)
           
 

Uses of Edge in samples.preview_new_graphdraw.iter
 

Methods in samples.preview_new_graphdraw.iter with parameters of type Edge
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.
 

Uses of Edge in samples.preview_new_graphdraw.iterablelayouts
 

Methods in samples.preview_new_graphdraw.iterablelayouts with parameters of type Edge
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)
           
 

Constructors in samples.preview_new_graphdraw.iterablelayouts with parameters of type Edge
SpringLayout.SpringEdge(Edge e, VisVertex v1, VisVertex v2)
           
 

Uses of Edge in samples.preview_new_graphdraw.test
 

Constructors in samples.preview_new_graphdraw.test with parameters of type Edge
CircleEdge(Edge ve, VisVertex front, VisVertex back)
           
 

Uses of Edge in scratch.danyel
 

Methods in scratch.danyel with parameters of type Edge
 boolean DemoTemporalRenderer.TimeFunc.acceptEdge(Edge edge)
           
 boolean TemporalFunction.acceptEdge(Edge edge)
           
 

Uses of Edge in scratch.danyel.lazy
 

Methods in scratch.danyel.lazy that return Edge
 Edge LazySparseVertexFactory.getEdge(Object id1, 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.
 

Methods in scratch.danyel.lazy with parameters of type Edge
protected  void LazySparseVertex.addNeighbor_internal(Edge e, Vertex v)
           
 

Uses of Edge in scratch.danyel.sample
 

Methods in scratch.danyel.sample with parameters of type Edge
protected  Vertex CircleLayout.getAVertex(Edge e)
           
 double CircleLayout.LengthFunction.getLength(Edge e)
           
 CircleLayout.CircleEdgeData CircleLayout.getSpringData(Edge e)
           
 void FadeRenderer.paintEdge(Graphics g, Edge e, int x1, int y1, int x2, int y2)
           
 void SimpleRenderer.paintEdge(Graphics g, Edge e, int x1, int y1, int x2, int y2)
           
 

Constructors in scratch.danyel.sample with parameters of type Edge
CircleLayout.CircleEdgeData(Edge e)
           
 

Uses of Edge in scratch.scott
 

Methods in scratch.scott with parameters of type Edge
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(Graphics g, Edge e, int x1, int y1, int x2, int y2)
           
 

Constructors in scratch.scott with parameters of type Edge
AestheticSpringVisualizer.SpringEdgeData(Edge e)
           
 

Uses of Edge in test.edu.uci.ics.jung.algorithms.shortestpath
 

Methods in test.edu.uci.ics.jung.algorithms.shortestpath with parameters of type Edge
 void TestShortestPath.addEdges(Graph g, Edge[] edge_array)