KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > crypto > dom > DOMURIReference


1 /*
2  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
3  */

4 /*
5  * $Id: DOMURIReference.java,v 1.5 2005/05/09 18:33:26 mullan Exp $
6  */

7 package javax.xml.crypto.dom;
8
9 import javax.xml.crypto.URIReference;
10 import org.w3c.dom.Node JavaDoc;
11
12 /**
13  * A DOM-specific {@link URIReference}. The purpose of this class is to
14  * provide additional context necessary for resolving XPointer URIs or
15  * same-document references.
16  *
17  * @author Sean Mullan
18  * @author JSR 105 Expert Group
19  * @since 1.6
20  */

21 public interface DOMURIReference extends URIReference {
22
23     /**
24      * Returns the here node.
25      *
26      * @return the attribute or processing instruction node or the
27      * parent element of the text node that directly contains the URI
28      */

29     Node JavaDoc getHere();
30 }
31
Popular Tags