Uses of Interface
edu.uci.ics.jung.graph.filters.Filter

Packages that use Filter
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. 
edu.uci.ics.jung.visualization Provides a visualization mechanism for drawing and rendering Graphs. 
scratch.danyel.sample   
 

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

Subinterfaces of Filter in edu.uci.ics.jung.graph.filters
 interface EfficientFilter
          An EfficientFilter can take in an UnassembledGraph withut assembling it, and is used for non-structural filters.
 interface LevelFilter
          A generally useful template for Filters that have a settable value.
 

Classes in edu.uci.ics.jung.graph.filters that implement Filter
 class EdgePredicateFilter
          This is a simple Edge filter that accepts the edges which its Predicate accepts.
 class GeneralEdgeAcceptFilter
          Abstract class that implements a generic filter for accepting arbitrary edges (and all vertices).
 class GeneralVertexAcceptFilter
          Abstract class that implements a generic filter for accepting arbitrary vertices (and all edges).
 class SerialFilter
          This is a generic filter that takes at least two other filters and runs them seially.
 class TrivialFilter
          A small filter that returns the vertices and edges in the orignal Graph.
 class VertexPredicateFilter
          This is a simple Vertex filter that accepts the vertices which its Predicate accepts.
 

Fields in edu.uci.ics.jung.graph.filters declared as Filter
protected  Filter UnassembledGraph.filter
          Holds a reference to the filter that generated this UnassembledGraph
 

Methods in edu.uci.ics.jung.graph.filters with parameters of type Filter
 void SerialFilter.append(Filter f)
          Adds a filter to the end of the sequence of filters.
 

Constructors in edu.uci.ics.jung.graph.filters with parameters of type Filter
SerialFilter(Filter f1, Filter f2)
          Small constructor for two filters.
UnassembledGraph(Filter f, Set vertices, Set edges, Graph original)
           
UnassembledGraph(Filter f, Set vertices, Set edges, UnassembledGraph previous)
           
 

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

Classes in edu.uci.ics.jung.graph.filters.impl that implement Filter
 class AlphabeticVertexFilter
          A small example filter that accepts vertices that are alphabetically past the input value.
 class DropSoloNodesFilter
          Accepts only nodes that have at least one edge--that is, nodes that are connected to one other node.
 class KNeighborhoodFilter
          A filter used to extract the k-neighborhood around one or more root node(s)
 class NumericDecorationFilter
          This simple filter accepts vertices if their UserData at the given key is over a threshold value.
 class WeightedEdgeGraphFilter
          This simple filter accepts Edges if their EdgeWeightLabeller turns out to be greater than the input value.
 

Methods in edu.uci.ics.jung.graph.filters.impl that return Filter
static Filter DropSoloNodesFilter.getInstance()
           
 

Uses of Filter in edu.uci.ics.jung.visualization
 

Fields in edu.uci.ics.jung.visualization declared as Filter
protected  Filter GraphDraw.mainFilter
          Deprecated.  
 

Methods in edu.uci.ics.jung.visualization with parameters of type Filter
 void GraphDraw.addStaticFilter(Filter f)
          Deprecated. Use the PluggableRenderer's vertex and edge visibility predicates instead. See the release notes for version 1.6 for more information.
 

Uses of Filter in scratch.danyel.sample
 

Methods in scratch.danyel.sample with parameters of type Filter
protected static void BetweenVis.runFilter(Graph g, FadeBetweennessRenderer r, Layout v, NumericDecorationFilter f2, Filter ff)
           
protected static void TestVis.runFilter(Graph g, FadeBetweennessRenderer r, Layout v, WeightedEdgeGraphFilter f2, Filter ff, JSlider strength)