Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.oro.io
Class AwkFilenameFilter  view AwkFilenameFilter download AwkFilenameFilter.java

java.lang.Object
  extended byorg.apache.oro.io.RegexFilenameFilter
      extended byorg.apache.oro.io.AwkFilenameFilter
All Implemented Interfaces:
java.io.FileFilter, java.io.FilenameFilter

public class AwkFilenameFilter
extends RegexFilenameFilter

AwkFilenameFilter is a RegexFilenameFilter subclass that filters on Awk regular expressions as implemented by the org.apache.oro.text.awk package, which is required to use this class.

Since:
1.0
Version:
@version@

Field Summary
private static org.apache.oro.text.PatternCache __CACHE
           
private static org.apache.oro.text.regex.PatternMatcher __MATCHER
           
 
Fields inherited from class org.apache.oro.io.RegexFilenameFilter
_cache, _matcher, _pattern
 
Constructor Summary
AwkFilenameFilter()
          Same as AwkFilenameFilter("");
AwkFilenameFilter(java.lang.String regex)
          Same as AwkFilenameFilter(regex, AwkCompiler.DEFAULT_MASK);
AwkFilenameFilter(java.lang.String regex, int options)
          Construct a filter initialized with the indicated regular expression and accompanying compilation options conforming to those used by org.apache.oro.text.awk.AwkCompiler
 
Methods inherited from class org.apache.oro.io.RegexFilenameFilter
accept, accept, setFilterExpression, setFilterExpression
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

__MATCHER

private static final org.apache.oro.text.regex.PatternMatcher __MATCHER

__CACHE

private static final org.apache.oro.text.PatternCache __CACHE
Constructor Detail

AwkFilenameFilter

public AwkFilenameFilter(java.lang.String regex,
                         int options)
Construct a filter initialized with the indicated regular expression and accompanying compilation options conforming to those used by org.apache.oro.text.awk.AwkCompiler


AwkFilenameFilter

public AwkFilenameFilter(java.lang.String regex)
Same as AwkFilenameFilter(regex, AwkCompiler.DEFAULT_MASK);


AwkFilenameFilter

public AwkFilenameFilter()
Same as AwkFilenameFilter("");