org.apache.tools.ant.util.regexp

Class JakartaOroMatcher

Implemented Interfaces:
RegexpMatcher
Known Direct Subclasses:
JakartaOroRegexp

public class JakartaOroMatcher
extends java.lang.Object
implements RegexpMatcher

Implementation of RegexpMatcher for Jakarta-ORO.

Field Summary

protected Perl5Compiler
compiler
protected Perl5Matcher
matcher

Fields inherited from interface org.apache.tools.ant.util.regexp.RegexpMatcher

MATCH_CASE_INSENSITIVE, MATCH_DEFAULT, MATCH_MULTILINE, MATCH_SINGLELINE

Constructor Summary

JakartaOroMatcher()

Method Summary

protected Pattern
getCompiledPattern(int options)
Get a compiled representation of the regexp pattern
protected int
getCompilerOptions(int options)
Vector
getGroups(String argument)
Returns a Vector of matched groups found in the argument.
Vector
getGroups(String input, int options)
Returns a Vector of matched groups found in the argument.
String
getPattern()
Get a String representation of the regexp pattern
boolean
matches(String argument)
Does the given argument match the pattern?
boolean
matches(String input, int options)
Does the given argument match the pattern?
void
setPattern(String pattern)
Set the regexp pattern from the String description.

Field Details

compiler

protected final Perl5Compiler compiler


matcher

protected final Perl5Matcher matcher

Constructor Details

JakartaOroMatcher

public JakartaOroMatcher()

Method Details

getCompiledPattern

protected Pattern getCompiledPattern(int options)
            throws BuildException
Get a compiled representation of the regexp pattern


getCompilerOptions

protected int getCompilerOptions(int options)


getGroups

public Vector getGroups(String argument)
            throws BuildException
Returns a Vector of matched groups found in the argument.

Group 0 will be the full match, the rest are the parenthesized subexpressions.

Specified by:
getGroups in interface RegexpMatcher


getGroups

public Vector getGroups(String input,
                        int options)
            throws BuildException
Returns a Vector of matched groups found in the argument.

Group 0 will be the full match, the rest are the parenthesized subexpressions.

Specified by:
getGroups in interface RegexpMatcher


getPattern

public String getPattern()
Get a String representation of the regexp pattern
Specified by:
getPattern in interface RegexpMatcher


matches

public boolean matches(String argument)
            throws BuildException
Does the given argument match the pattern?
Specified by:
matches in interface RegexpMatcher


matches

public boolean matches(String input,
                       int options)
            throws BuildException
Does the given argument match the pattern?
Specified by:
matches in interface RegexpMatcher


setPattern

public void setPattern(String pattern)
Set the regexp pattern from the String description.
Specified by:
setPattern in interface RegexpMatcher


Copyright B) 2000-2005 Apache Software Foundation. All Rights Reserved.