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