Package docking.widgets.filter
Class MatchesExactlyTextFilterFactory
- java.lang.Object
 - 
- docking.widgets.filter.MatchesExactlyTextFilterFactory
 
 
- 
- All Implemented Interfaces:
 TextFilterFactory
public class MatchesExactlyTextFilterFactory extends java.lang.Object implements TextFilterFactory
A filter factory that createsTextFilters that will pass text when it matches the filter exactly. 
- 
- 
Constructor Summary
Constructors Constructor Description MatchesExactlyTextFilterFactory(boolean caseSensitive, boolean allowGlobbing) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TextFiltergetTextFilter(java.lang.String text)The factory's method for creating a text filter. 
 - 
 
- 
- 
Method Detail
- 
getTextFilter
public TextFilter getTextFilter(java.lang.String text)
Description copied from interface:TextFilterFactoryThe factory's method for creating a text filter.- Specified by:
 getTextFilterin interfaceTextFilterFactory- Parameters:
 text- the text used to create the filter- Returns:
 - the filter
 
 
 - 
 
 -