Uses of Interface
org.eclipse.jpt.utility.Filter

Packages that use Filter
org.eclipse.jpt.core.context.java   
org.eclipse.jpt.utility   
 

Uses of Filter in org.eclipse.jpt.core.context.java
 

Methods in org.eclipse.jpt.core.context.java with parameters of type Filter
 java.util.Iterator<java.lang.String> JavaJpaContextNode.javaCompletionProposals(int pos, Filter<java.lang.String> filter, org.eclipse.jdt.core.dom.CompilationUnit astRoot)
          Return the Java code-completion proposals for the specified position in the source code.
 

Uses of Filter in org.eclipse.jpt.utility
 

Classes in org.eclipse.jpt.utility that implement Filter
static class Filter.Disabled<S>
          Singleton implemetation of the filter interface that throws an exception if called.
static class Filter.Null<S>
          Singleton implemetation of the filter interface that accepts all the objects (i.e.
static class Filter.Opaque<S>
          Singleton implemetation of the filter interface that accepts none of the objects (i.e.
 

Fields in org.eclipse.jpt.utility declared as Filter
static Filter Filter.Null.INSTANCE
           
static Filter Filter.Opaque.INSTANCE
           
static Filter Filter.Disabled.INSTANCE
           
 

Methods in org.eclipse.jpt.utility that return Filter
static
<R> Filter<R>
Filter.Null.instance()
           
static
<R> Filter<R>
Filter.Opaque.instance()
           
static
<R> Filter<R>
Filter.Disabled.instance()