Uses of Class
edu.uci.ics.jung.graph.filters.UnassembledGraph

Packages that use UnassembledGraph
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. 
 

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

Fields in edu.uci.ics.jung.graph.filters declared as UnassembledGraph
protected  UnassembledGraph UnassembledGraph.previousGraph
           
 

Methods in edu.uci.ics.jung.graph.filters that return UnassembledGraph
 UnassembledGraph Filter.filter(Graph g)
          Filters a graph by returning an UnassembledGraph consisting of nodes and edges that pass the filter.
 UnassembledGraph GeneralEdgeAcceptFilter.filter(Graph g)
          Returns an UnassembledGraph with the subset of edges that pass acceptEdge.
 UnassembledGraph GeneralVertexAcceptFilter.filter(Graph g)
          This method does the actual filtering of the the graph.
 UnassembledGraph SerialFilter.filter(Graph g)
          Runs through the sequence of filters, one at a time.
 UnassembledGraph EfficientFilter.filter(UnassembledGraph ug)
          Filters a graph by returning an UnassembledGraph consisting of nodes and edges that pass the filter.
 UnassembledGraph GeneralEdgeAcceptFilter.filter(UnassembledGraph ug)
          Returns an UnassembledGraph with the subset of edges that pass acceptEdge.
 UnassembledGraph GeneralVertexAcceptFilter.filter(UnassembledGraph g)
          Returns an UnassembledGraph with the subset of vertices that pass acceptEdge.
 UnassembledGraph SerialFilter.filter(UnassembledGraph g)
          Runs through the sequence of filters, one at a time.
 

Methods in edu.uci.ics.jung.graph.filters with parameters of type UnassembledGraph
 UnassembledGraph EfficientFilter.filter(UnassembledGraph ug)
          Filters a graph by returning an UnassembledGraph consisting of nodes and edges that pass the filter.
 UnassembledGraph GeneralEdgeAcceptFilter.filter(UnassembledGraph ug)
          Returns an UnassembledGraph with the subset of edges that pass acceptEdge.
 UnassembledGraph GeneralVertexAcceptFilter.filter(UnassembledGraph g)
          Returns an UnassembledGraph with the subset of vertices that pass acceptEdge.
 UnassembledGraph SerialFilter.filter(UnassembledGraph g)
          Runs through the sequence of filters, one at a time.
 

Constructors in edu.uci.ics.jung.graph.filters with parameters of type UnassembledGraph
UnassembledGraph(Filter f, Set vertices, Set edges, UnassembledGraph previous)
           
 

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

Methods in edu.uci.ics.jung.graph.filters.impl that return UnassembledGraph
 UnassembledGraph KNeighborhoodFilter.filter(Graph graph)
          Constructs an unassembled graph containing the k-neighbhood around the root node(s)