Uses of Interface
com.alee.utils.compare.Filter

Packages that use Filter
com.alee.extended.tree   
com.alee.laf.filechooser   
com.alee.managers.plugin   
com.alee.utils   
com.alee.utils.filefilter   
com.alee.utils.reflection   
 

Uses of Filter in com.alee.extended.tree
 

Classes in com.alee.extended.tree that implement Filter
 class AsyncTreeNodesFilter<E extends AsyncUniqueNode>
          Special smart tree filter that doesn't filter out parent nodes which has childs that are accepted by filter.
 class FileTreeNodeFilter
          Custom filter for file tree nodes.
 

Fields in com.alee.extended.tree declared as Filter
static Filter<FileTreeNode> WebFileTreeStyle.filter
          Default tree file filter.
protected  Filter<E> WebAsyncTree.filter
          Tree nodes filter.
protected  Filter<java.io.File> FileTreeNodeFilter.filter
          Used file filter.
protected  Filter<E> AbstractTreeDataProvider.filter
          Childs filter.
 

Methods in com.alee.extended.tree that return Filter
 Filter<E> AsyncTreeDataProvider.getChildsFilter(E node)
          Returns child nodes filter for the specified asynchronous tree node.
 Filter<E> AbstractTreeDataProvider.getChildsFilter(E node)
          Returns child nodes filter for the specified asynchronous tree node.
 Filter<FileTreeNode> FileTreeDataProvider.getChildsFilter(FileTreeNode node)
          Returns child nodes filter for the specified asynchronous tree node.
 Filter<java.io.File> WebFileTree.getFileFilter()
          Returns tree files filter.
 Filter<E> WebAsyncTree.getFilter()
          Returns tree nodes filter.
 Filter<java.io.File> FileTreeNodeFilter.getFilter()
          Returns used file filter.
 

Methods in com.alee.extended.tree with parameters of type Filter
 void AbstractTreeDataProvider.setChildsFilter(Filter<E> filter)
          Sets childs filter for all nodes.
 void WebFileTree.setFileFilter(Filter<java.io.File> filter)
          Sets tree files filter.
 void WebAsyncTree.setFilter(Filter<E> filter)
          Sets tree nodes filter.
 void FileTreeNodeFilter.setFilter(Filter<java.io.File> filter)
          Sets used file filter.
 

Constructors in com.alee.extended.tree with parameters of type Filter
FileTreeDataProvider(Filter<FileTreeNode> filter, java.io.File... rootFiles)
          Constructs file tree data provider with the specified files as root.
FileTreeDataProvider(Filter<FileTreeNode> filter, java.util.List<java.io.File> rootFiles)
          Constructs file tree data provider with the specified files as root.
FileTreeNodeFilter(Filter<java.io.File> filter)
          Constructs new FileTreeNodeFilter using the specified file filter.
 

Uses of Filter in com.alee.laf.filechooser
 

Classes in com.alee.laf.filechooser that implement Filter
protected  class WebFileChooserPanel.HiddenFilesFilter
          Custom hidden/non-hidden files filter.
 

Uses of Filter in com.alee.managers.plugin
 

Fields in com.alee.managers.plugin declared as Filter
protected  Filter<DetectedPlugin<T>> PluginManager.pluginFilter
          Special filter to filter out unwanted plugins before their initialization.
 

Methods in com.alee.managers.plugin that return Filter
 Filter<DetectedPlugin<T>> PluginManager.getPluginFilter()
          Returns special filter that filters out unwanted plugins before their initialization.
 

Methods in com.alee.managers.plugin with parameters of type Filter
 void PluginManager.setPluginFilter(Filter<DetectedPlugin<T>> pluginFilter)
          Sets special filter that filters out unwanted plugins before their initialization.
 

Uses of Filter in com.alee.utils
 

Methods in com.alee.utils with parameters of type Filter
static
<T> java.util.List<T>
CollectionUtils.filter(java.util.Collection<T> collection, Filter<T> filter)
          Returns list of elements filtered from collection.
 

Uses of Filter in com.alee.utils.filefilter
 

Classes in com.alee.utils.filefilter that implement Filter
 class AbstractFileFilter
          Default file filter for WebLaF file chooser that provides additional filter information.
 class AllFilesFilter
          Custom file filter that accepts all files.
 class CustomFileFilter
          Custom file filter class.
 class DirectoriesFilter
          Custom file filter that accepts only directories.
 class FilesFilter
          Custom file filter that accepts only files.
 class GroupedFileFilter
          This file filter groups specified file filters in a certain way defined by filter group type.
 class ImageFilesFilter
          Custom file filter that accepts only image files.
 class NonHiddenFilter
          Custom file filter that accepts only non-hidden files.
 

Uses of Filter in com.alee.utils.reflection
 

Methods in com.alee.utils.reflection with parameters of type Filter
 java.util.List<JarEntry> JarStructure.findSimilarEntries(java.lang.String name, Filter<JarEntry> filter)