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

Packages that use UnassembledGraph
edu.uci.ics.jung.graph.filters   
edu.uci.ics.jung.graph.filters.impl   
 

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

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

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

Constructors in edu.uci.ics.jung.graph.filters with parameters of type UnassembledGraph
UnassembledGraph(Filter f, java.util.Set vertices, java.util.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)