Uses of Interface
giny.model.GraphPerspective

Packages that use GraphPerspective
giny.model   
giny.util   
giny.view   
 

Uses of GraphPerspective in giny.model
 

Methods in giny.model that return GraphPerspective
 GraphPerspective GraphPerspective.join(GraphPerspective peer)
          Creates a union GraphPerspective.
 GraphPerspective GraphPerspective.createGraphPerspective(Node[] nodes, Edge[] edges)
          Deprecated. Use RootGraph.createGraphPerspective(int[], int[]) instead.
 GraphPerspective GraphPerspective.createGraphPerspective(int[] node_indices, int[] edge_indices)
          Deprecated. Use RootGraph.createGraphPerspective(int[], int[]) instead.
 GraphPerspective GraphPerspective.createGraphPerspective(Filter filter)
          Create a new GraphPerspective with all of the Nodes from this one that pass the given filter and all of the Edges from this one that pass the filter (and all Nodes incident on those edges).
 GraphPerspective GraphPerspective.createGraphPerspective(int[] node_indices)
          Create a new GraphPerspective given a list of Nodes.
 GraphPerspective Node.getGraphPerspective()
          Deprecated. Don't use this method because the behavior of the returned GraphPerspective with respect to changing meta-children of this Node is ill-defined; use RootGraph.getNodeMetaChildIndicesArray(int) and RootGraph.getEdgeMetaChildIndicesArray(int) instead.
 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).
 GraphPerspective RootGraph.createGraphPerspective(int[] node_indices, int[] edge_indices)
          Create a new GraphPerspective with just the given Nodes and Edges (and all Nodes incident on the given Edges).
 

Methods in giny.model with parameters of type GraphPerspective
 GraphPerspective GraphPerspective.join(GraphPerspective peer)
          Creates a union GraphPerspective.
 boolean Node.setGraphPerspective(GraphPerspective gp)
          Deprecated. Don't use this method because the behavior of the input GraphPerspective with respect to changing meta-children of this Node is ill-defined; use RootGraph.addNodeMetaChild(int, int) and RootGraph.addEdgeMetaChild(int, int) instead.
 int RootGraph.createNode(GraphPerspective perspective)
          Create a new Node in this RootGraph, and return its index.
 

Uses of GraphPerspective in giny.util
 

Fields in giny.util declared as GraphPerspective
protected  GraphPerspective NodeDistances.perspective
           
protected  GraphPerspective IntNodeDistances.perspective
           
 

Methods in giny.util with parameters of type GraphPerspective
static int[] GraphPerspectiveUtil.hideNode(GraphPerspective gp, int node, boolean hide_adjacent_edges)
          This method will hide the node and optionally all connected edges.
 void GraphPerspectiveUtil.unhideNode(GraphPerspective gp, int node, boolean unhide_all_edges)
          This method is a convience method for unhiding all of the edges that connect a node to an edge in the Perspective
 void GraphPerspectiveUtil.unhideNode(GraphPerspective gp, int node, boolean unhide_all_edges, int[] excluded_edges)
           
 

Constructors in giny.util with parameters of type GraphPerspective
NodeDistances(java.util.List nodes_list, int[][] distances, GraphPerspective perspective)
          Deprecated. Can't use this now that GraphPerspective uses root graph indices.
NodeDistances(java.util.List nodes_list, int[][] distances, GraphPerspective perspective, boolean directed)
          Deprecated. Can't use this now that GraphPerspective uses root graph indices.
NodeDistances(java.util.List nodesList, GraphPerspective perspective, java.util.HashMap nodeIndexToMatrixIndexMap)
          The main constructor
IntNodeDistances(int[] nodes_array, int[][] distances, GraphPerspective perspective)
          Constructor, it assumes that the graph is undirected.
IntNodeDistances(int[] nodes_array, int[][] distances, GraphPerspective perspective, boolean directed)
          Constructor, specifies whether the graph should be trated as a directed graph or not.
 

Uses of GraphPerspective in giny.view
 

Methods in giny.view that return GraphPerspective
 GraphPerspective GraphView.getGraphPerspective()