simple.xml.util
Class Match

java.lang.Object
  extended by simple.xml.util.Match

public abstract class Match
extends java.lang.Object

This object is stored within a Resolver so that it can be retrieved using a string that matches its pattern. Any object that extends this can be inserted into the resolver and retrieved using a string that matches its pattern. For example take the following pattern "*.html" this will match the string "/index.html" or "readme.html". This object should be extended to add more XML attributes and elements, which can be retrieved when the Match object is retrieve from a resolver.

Author:
Niall Gallagher

Field Summary
protected  java.lang.String pattern
          This is the pattern string that is used by the resolver.
 
Constructor Summary
Match()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

pattern

protected java.lang.String pattern
This is the pattern string that is used by the resolver.

Constructor Detail

Match

public Match()