Uses of Interface
net.sourceforge.fluxion.graph.Edge

Packages that use Edge
net.sourceforge.fluxion.graph   
net.sourceforge.fluxion.graph.listener   
net.sourceforge.fluxion.graph.visitor   
net.sourceforge.fluxion.runcible.graph   
net.sourceforge.fluxion.runcible.graph.view.factory   
 

Uses of Edge in net.sourceforge.fluxion.graph
 

Classes in net.sourceforge.fluxion.graph that implement Edge
 class AbstractEdge
          An abstract implementation of Edge which provides common implementations os the setter and getter methods defined by this interface.
 

Methods in net.sourceforge.fluxion.graph that return types with arguments of type Edge
 java.util.Collection<Edge> Graph.getLeadingEdges(Node node)
          Returns the set of edges leading into a given node.
 java.util.Collection<Edge> AbstractGraph.getLeadingEdges(Node node)
           
 java.util.Collection<Edge> Graph.getTailingEdges(Node node)
          Returns the set of edges which lead out of the given node.
 java.util.Set<Edge> AbstractGraph.getTailingEdges(Node node)
           
 

Methods in net.sourceforge.fluxion.graph with parameters of type Edge
 void Graph.add(Edge edge)
          Adds the Edge to this graph.
 void AbstractGraph.add(Edge edge)
           
 boolean Graph.contains(Edge edge)
          Returns true if this graph contains the given edge, or false otherwise
 boolean AbstractGraph.contains(Edge edge)
           
 void Graph.remove(Edge edge)
          Removes this Edge from the graph.
 void AbstractGraph.remove(Edge edge)
           
 

Uses of Edge in net.sourceforge.fluxion.graph.listener
 

Methods in net.sourceforge.fluxion.graph.listener that return Edge
 Edge GraphChangeEvent.getEdge()
           
 

Methods in net.sourceforge.fluxion.graph.listener with parameters of type Edge
 void GraphChangeEvent.setEdgeChanged(Edge edge)
           
 

Uses of Edge in net.sourceforge.fluxion.graph.visitor
 

Methods in net.sourceforge.fluxion.graph.visitor with parameters of type Edge
 void EdgeVisitor.visit(Edge edge)
          Visit this Edge
 

Uses of Edge in net.sourceforge.fluxion.runcible.graph
 

Subinterfaces of Edge in net.sourceforge.fluxion.runcible.graph
 interface OWLEdge
          Javadocs go here.
 

Classes in net.sourceforge.fluxion.runcible.graph that implement Edge
 class IsAEdge
          An edge which represents an "is_a" relationship between two nodes.
 class NestedEdge
          An edge which represents a nested relationship beneath a node.
 class ValueEdge
          An edge representing some value property.
 class WalkEdge
          An edge representing a walk operation down a property.
 

Uses of Edge in net.sourceforge.fluxion.runcible.graph.view.factory
 

Methods in net.sourceforge.fluxion.runcible.graph.view.factory with parameters of type Edge
 void FlexEdgeViewFactory.visit(Edge edge)
           
 void DotEdgeViewFactory.visit(Edge edge)
           
protected  void FlexGraphViewFactory.walkGraph(Graph graph, NodeView parent, Edge edge, java.util.Set<Node> alreadyDone)
           
protected  void DotGraphViewFactory.walkGraph(Graph graph, NodeView parent, Edge edge, java.util.Set<Node> alreadyDone)
           
 



Copyright © 2010. All Rights Reserved.