01: package com.sun.xml.xsom;
02:
03: /**
04: * Selector or field of {@link XSIdentityConstraint}.
05: *
06: * @author Kohsuke Kawaguchi
07: */
08: public interface XSXPath extends XSComponent {
09:
10: /**
11: * Returns the {@link XSIdentityConstraint} to which
12: * this XPath belongs to.
13: *
14: * @return
15: * never null.
16: */
17: XSIdentityConstraint getParent();
18:
19: /**
20: * Gets the XPath as a string.
21: *
22: * @return
23: * never null.
24: */
25: XmlString getXPath();
26: }
|