You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
978 B
50 lines
978 B
/*
|
|
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.xml.transform.dom;
|
|
|
|
import javax.xml.transform.SourceLocator;
|
|
|
|
import org.w3c.dom.Node;
|
|
|
|
|
|
/**
|
|
* Indicates the position of a node in a source DOM, intended
|
|
* primarily for error reporting. To use a DOMLocator, the receiver of an
|
|
* error must downcast the {@link javax.xml.transform.SourceLocator}
|
|
* object returned by an exception. A {@link javax.xml.transform.Transformer}
|
|
* may use this object for purposes other than error reporting, for instance,
|
|
* to indicate the source node that originated a result node.
|
|
*/
|
|
public interface DOMLocator extends SourceLocator {
|
|
|
|
/**
|
|
* Return the node where the event occurred.
|
|
*
|
|
* @return The node that is the location for the event.
|
|
*/
|
|
public Node getOriginatingNode();
|
|
}
|