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.*; 64 65 66 78 public class Perl5FilenameFilter extends RegexFilenameFilter { 79 private static final PatternMatcher __MATCHER = new Perl5Matcher(); 80 private static final PatternCache __CACHE = new PatternCacheLRU(); 81 82 95 public Perl5FilenameFilter(String regex, int options) { 96 super(__CACHE, __MATCHER, regex, options); 97 } 98 99 100 public Perl5FilenameFilter(String regex) { 101 super(__CACHE, __MATCHER, regex); 102 } 103 104 105 public Perl5FilenameFilter() { 106 super(__CACHE, __MATCHER); 107 } 108 } 109 | Popular Tags |