1 package org.apache.oro.io; 2 3 59 60 import java.io.*; 61 62 import org.apache.oro.text.regex.*; 63 import org.apache.oro.text.awk.*; 64 import org.apache.oro.text.*; 65 66 78 public class AwkFilenameFilter extends RegexFilenameFilter { 79 private static final PatternMatcher __MATCHER = new AwkMatcher(); 80 private static final PatternCache __CACHE = 81 new PatternCacheLRU(new AwkCompiler()); 82 83 96 public AwkFilenameFilter(String regex, int options) { 97 super(__CACHE, __MATCHER, regex, options); 98 } 99 100 101 public AwkFilenameFilter(String regex) { 102 super(__CACHE, __MATCHER, regex); 103 } 104 105 106 public AwkFilenameFilter() { 107 super(__CACHE, __MATCHER); 108 } 109 } 110 | Popular Tags |