org.apache.ws.jaxme.xs
public final class XPathMatcher extends Object
Method Summary | |
---|---|
static XSElementOrAttrRef[][] | match(XsTKeybase keybase, XSElement startingNode)
Matches every element and attribute referenced by the specified
keybase. The result is a two dimensional array, the first dimension corresponds to each xs:field used to declare the constraint. |
XSElementOrAttrRef[] | match(XSElement startingNode)
Return the elements and attributes matched by this xpath when applied
from the specified starting node. |
void | match(XSElement startingNode, Set matches)
Return the elements and attributes matched by this xpath when applied
from the specified starting node. |
static XPathMatcher | parse(Locator locator, String xpath, boolean elementsOnly)
Create an XPathMatcher. |
The result is a two dimensional array, the first dimension corresponds to each xs:field used to declare the constraint. The second dimension is for each 'or' used within the fields xpath query.
Only tags and attributes that were matched by the xpath will be in the result, any xpath that fails to match anything will not be stored in this array.
Parameters: elementsOnly True if the xpath is not allowed to match attributes.