Uses of Interface
de.postfuse.ui.filter.Filter

Packages that use Filter
de.postfuse.ui   
de.postfuse.ui.filter   
 

Uses of Filter in de.postfuse.ui
 

Methods in de.postfuse.ui that return types with arguments of type Filter
 List<Filter> RootGraph.getPostLayoutFilterList()
          Here you can add some post-layout-filters which are later selectable in the graphical user interface.
 List<Filter> RootGraph.getPreLayoutFilterList()
          Here you can add some pre-layout-filters which are later selectable in the graphical user interface.
 

Methods in de.postfuse.ui with parameters of type Filter
 void RootGraph.setPreLayoutFilter(Filter filter)
          Set filter function which is applied before the layouter runs.
 

Uses of Filter in de.postfuse.ui.filter
 

Classes in de.postfuse.ui.filter that implement Filter
 class AndFilter
           
 class ConstFilter
           
 class EqFilter
           
 class GFilter
          A template for a filter, implements everything which should be the same in all filters.
 class GListFilter
           
 class HasArrowTypeFilter
           
 class HasFillColorFilter
           
 class HasShapeFilter
           
 class HasStrokeColorFilter
           
 class IsEdgeFilter
           
 class IsFoldedFilter
          determines if the given Tuple is a folded node
 class IsGraphMember
          This Predicate filters for members of the given subgraph id - but only direct members.
 class IsGraphMemberRecursive
          This Predicate filters for members of the given subgraph id - even if they are deeply nested.
 class IsLoopFilter
          Only loops pass this filter.
 class IsNodeFilter
           
 class IsSubgraphFilter
          determines if the given Tuple represents a subgraph this filter is used for visual item as well as data so there should not be any instanceof - Test
 class NotFilter
          This filter inverts the inner filter.
 class OrFilter
           
 class XorFilter
           
 

Methods in de.postfuse.ui.filter that return Filter
 Filter GListFilter.get(int index)
           
 Filter GListFilter.remove(int index)
           
 Filter GListFilter.set(int index, Filter element)
           
 

Methods in de.postfuse.ui.filter that return types with arguments of type Filter
 Iterator<Filter> GListFilter.iterator()
           
 ListIterator<Filter> GListFilter.listIterator()
           
 ListIterator<Filter> GListFilter.listIterator(int index)
           
 List<Filter> GListFilter.subList(int fromIndex, int toIndex)
           
 

Methods in de.postfuse.ui.filter with parameters of type Filter
 boolean GListFilter.add(Filter o)
           
 void GListFilter.add(int index, Filter element)
           
 Filter GListFilter.set(int index, Filter element)
           
 

Method parameters in de.postfuse.ui.filter with type arguments of type Filter
 boolean GListFilter.addAll(Collection<? extends Filter> c)
           
 boolean GListFilter.addAll(int index, Collection<? extends Filter> c)
           
 

Constructors in de.postfuse.ui.filter with parameters of type Filter
AndFilter(Filter f1, Filter f2)
           
EqFilter(Filter f1, Filter f2)
           
NotFilter(Filter f)
           
OrFilter(Filter f1, Filter f2)
           
XorFilter(Filter f1, Filter f2)