| java.lang.Object org.tp23.antinstaller.antmod.Jdk14RegexpMatcher
All known Subclasses: org.tp23.antinstaller.antmod.Jdk14RegexpRegexp,
Jdk14RegexpMatcher | public class Jdk14RegexpMatcher implements RegexpMatcher(Code) | | Implementation of RegexpMatcher for the built-in regexp matcher of
JDK 1.4. UNIX_LINES option is enabled as a default.
|
Jdk14RegexpMatcher | public Jdk14RegexpMatcher()(Code) | | |
getCompiledPattern | protected Pattern getCompiledPattern(int options) throws BuildException(Code) | | |
getCompilerOptions | protected int getCompilerOptions(int options)(Code) | | |
getGroups | public Vector getGroups(String argument) throws BuildException(Code) | | Returns a Vector of matched groups found in the argument.
Group 0 will be the full match, the rest are the
parenthesized subexpressions .
|
getGroups | public Vector getGroups(String input, int options) throws BuildException(Code) | | Returns a Vector of matched groups found in the argument.
Group 0 will be the full match, the rest are the
parenthesized subexpressions .
|
getPattern | public String getPattern()(Code) | | Get a String representation of the regexp pattern
|
matches | public boolean matches(String argument) throws BuildException(Code) | | Does the given argument match the pattern?
|
matches | public boolean matches(String input, int options) throws BuildException(Code) | | Does the given argument match the pattern?
|
setPattern | public void setPattern(String pattern)(Code) | | Set the regexp pattern from the String description.
|
|
|