gov.sns.tools.swing.patternfilter
Class PatternGeneratorFactory

java.lang.Object
  |
  +--gov.sns.tools.swing.patternfilter.PatternGeneratorFactory

public class PatternGeneratorFactory
extends java.lang.Object

PatternGeneratorFactory is a factory of pattern generators.


Constructor Summary
PatternGeneratorFactory()
           
 
Method Summary
static PatternGenerator makeBeginsWithGenerator()
          Constructs a pattern generator which checks whether the tested text begins with the the pattern text.
static PatternGenerator makeContainsGenerator()
          Constructs a pattern generator which checks whether the tested text contains the the pattern text.
static PatternGenerator makeEndsWithGenerator()
          Constructs a pattern generator which checks whether the tested text ends with the the pattern text.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PatternGeneratorFactory

public PatternGeneratorFactory()
Method Detail

makeContainsGenerator

public static PatternGenerator makeContainsGenerator()
Constructs a pattern generator which checks whether the tested text contains the the pattern text.


makeBeginsWithGenerator

public static PatternGenerator makeBeginsWithGenerator()
Constructs a pattern generator which checks whether the tested text begins with the the pattern text.


makeEndsWithGenerator

public static PatternGenerator makeEndsWithGenerator()
Constructs a pattern generator which checks whether the tested text ends with the the pattern text.