blob: fa302c5c181feeaaf9b06d9786d55b106a85f46c [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
*/
/*
* $Id$
*/
package javax.xml.crypto.dom;
import javax.xml.crypto.URIReference;
import org.w3c.dom.Node;
/**
* A DOM-specific {@link URIReference}. The purpose of this class is to
* provide additional context necessary for resolving XPointer URIs or
* same-document references.
*
* @author Sean Mullan
* @author JSR 105 Expert Group
*/
public interface DOMURIReference extends URIReference {
/**
* Returns the here node.
*
* @return the attribute or processing instruction node or the
* parent element of the text node that directly contains the URI
*/
Node getHere();
}