Uses of Interface
giny.model.Edge

Packages that use Edge
giny.model   
giny.view   
 

Uses of Edge in giny.model
 

Methods in giny.model that return Edge
abstract  Edge[] GraphPerspectiveChangeEvent.getRestoredEdges()
           
abstract  Edge[] GraphPerspectiveChangeEvent.getHiddenEdges()
          Deprecated. Use getHiddenEdgeIndices() instead; the edges returned by this method may have undefined state.
abstract  Edge[] GraphPerspectiveChangeEvent.getSelectedEdges()
          Deprecated. Nowhere in GraphPerspective is there functionality that specifies edge selection logic.
abstract  Edge[] GraphPerspectiveChangeEvent.getUnselectedEdges()
          Deprecated. Nowhere in GraphPerspective is there functionality that specifies edge un-selection logic.
 Edge GraphPerspective.hideEdge(Edge edge)
          If this GraphPerspective does not hide the given Edge, change it so that it does hide the edge.
 Edge GraphPerspective.restoreEdge(Edge edge)
          If this GraphPerspective hides the given Edge, change it so that it does not hide the edge or the Nodes on which the edge is incident.
 Edge GraphPerspective.getEdge(int index)
          Return an Edge which is in this GraphPerspective.
abstract  Edge[] RootGraphChangeEvent.getCreatedEdges()
           
abstract  Edge[] RootGraphChangeEvent.getRemovedEdges()
          Deprecated. Use getRemovedEdgeIndices() instead; the edges returned by this method may have undefined state.
 Edge RootGraph.removeEdge(Edge edge)
          Remove the given Edge from this RootGraph and all of its GraphPerspectives.
 Edge RootGraph.getEdge(int edge_index)
          Return the Edge with the given index in this RootGraph.
 

Methods in giny.model with parameters of type Edge
 Edge GraphPerspective.hideEdge(Edge edge)
          If this GraphPerspective does not hide the given Edge, change it so that it does hide the edge.
 Edge GraphPerspective.restoreEdge(Edge edge)
          If this GraphPerspective hides the given Edge, change it so that it does not hide the edge or the Nodes on which the edge is incident.
 boolean GraphPerspective.containsEdge(Edge edge)
          Return true if the given Edge is in this GraphPerspective.
 boolean GraphPerspective.containsEdge(Edge edge, boolean recurse)
          Return true if the given Edge is in this GraphPerspective.
 GraphPerspective GraphPerspective.createGraphPerspective(Node[] nodes, Edge[] edges)
          Deprecated. Use RootGraph.createGraphPerspective(int[], int[]) instead.
 int GraphPerspective.getIndex(Edge edge)
          Return the index of the given Edge in the underlying RootGraph.
 boolean GraphPerspective.isMetaParent(Edge child, Node parent)
          Nodes and Edges comprise an additional directed graph through the contains-a relationship, in which a MetaParent Node contains each of its MetaChild Nodes and Edges.
 java.util.List GraphPerspective.metaParentsList(Edge edge)
          Nodes and Edges comprise an additional directed graph through the contains-a relationship, in which a MetaParent Node contains each of its MetaChild Nodes and Edges.
 boolean GraphPerspective.isMetaChild(Node parent, Edge child)
          Nodes and Edges comprise an additional directed graph through the contains-a relationship, in which a MetaParent Node contains each of its MetaChild Nodes and Edges.
 GraphPerspective RootGraph.createGraphPerspective(Node[] nodes, Edge[] edges)
          Create a new GraphPerspective with just the given Nodes and Edges (and all Nodes incident on the given Edges).
 int RootGraph.createNode(Node[] nodes, Edge[] edges)
          Create a new Node in this RootGraph, and return its index.
 Edge RootGraph.removeEdge(Edge edge)
          Remove the given Edge from this RootGraph and all of its GraphPerspectives.
 boolean RootGraph.containsEdge(Edge edge)
          Return true if the given Edge is in this RootGraph.
 int RootGraph.getIndex(Edge edge)
          Return the index of the given Edge.
 boolean RootGraph.addMetaChild(Node parent, Edge child)
          Nodes and Edges comprise an additional directed graph through the contains-a relationship, in which a MetaParent Node contains each of its MetaChild Nodes and Edges.
 boolean RootGraph.isMetaParent(Edge child, Node parent)
          Nodes and Edges comprise an additional directed graph through the contains-a relationship, in which a MetaParent Node contains each of its MetaChild Nodes and Edges.
 java.util.List RootGraph.metaParentsList(Edge edge)
          Deprecated. Use getEdgeMetaParentIndicesArray(int) instead.
 boolean RootGraph.isMetaChild(Node parent, Edge child)
          Nodes and Edges comprise an additional directed graph through the contains-a relationship, in which a MetaParent Node contains each of its MetaChild Nodes and Edges.
 

Uses of Edge in giny.view
 

Methods in giny.view that return Edge
abstract  Edge[] GraphViewChangeEvent.getRestoredEdges()
           
abstract  Edge[] GraphViewChangeEvent.getHiddenEdges()
           
abstract  Edge[] GraphViewChangeEvent.getSelectedEdges()
           
abstract  Edge[] GraphViewChangeEvent.getUnselectedEdges()
           
 Edge EdgeView.getEdge()
           
 

Methods in giny.view with parameters of type Edge
 EdgeView GraphView.removeEdgeView(Edge edge)
          This will entirely remove a NodeView/EdgeView from the GraphView.
 EdgeView GraphView.getEdgeView(Edge edge)