1 package org.apache.oro.text; 2 3 59 60 import java.util.*; 61 62 import org.apache.oro.text.regex.*; 63 import org.apache.oro.util.*; 64 65 84 public final class PatternCacheFIFO2 extends GenericPatternCache { 85 86 93 public PatternCacheFIFO2(int capacity, PatternCompiler compiler) { 94 super(new CacheFIFO2(capacity), compiler); 95 } 96 97 98 104 public PatternCacheFIFO2(PatternCompiler compiler) { 105 this(GenericPatternCache.DEFAULT_CAPACITY, compiler); 106 } 107 108 109 115 public PatternCacheFIFO2(int capacity) { 116 this(capacity, new Perl5Compiler()); 117 } 118 119 120 126 public PatternCacheFIFO2() { 127 this(GenericPatternCache.DEFAULT_CAPACITY); 128 } 129 130 } 131 132 133 134 | Popular Tags |