1 package org.apache.oro.text.regex; 2 3 59 60 import java.io.*; 61 62 81 public final class Perl5Pattern implements Pattern, Serializable, Cloneable { 82 static final int _OPT_ANCH = 1, _OPT_SKIP = 2, _OPT_IMPLICIT = 4; 83 84 String _expression; 85 char[] _program; 86 int _mustUtility; 87 int _back; 88 int _minLength; 89 int _numParentheses; 90 boolean _isCaseInsensitive, _isExpensive; 91 int _startClassOffset; 92 int _anchor; 93 int _options; 94 char[] _mustString, _startString; 95 96 100 Perl5Pattern(){ } 101 102 111 112 118 public String getPattern() { return _expression; } 119 120 121 127 public int getOptions() { return _options; } 128 129 136 } 137 | Popular Tags |