01: package net.sf.saxon.om;
02:
03: /**
04: * This is a marker interface used to identify nodes that contain a namepool fingerprint. Although all nodes
05: * are capable of returning a fingerprint, some (notably DOM, XOM, and JDOM nodes) need to calculate it on demand.
06: * A node that implements this interface indicates that obtaining the fingerprint for use in name comparisons
07: * is more efficient than using the URI and local name.
08: */
09:
10: public interface FingerprintedNode {
11: }
12:
13: //
14: // The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
15: // you may not use this file except in compliance with the License. You may obtain a copy of the
16: // License at http://www.mozilla.org/MPL/
17: //
18: // Software distributed under the License is distributed on an "AS IS" basis,
19: // WITHOUT WARRANTY OF ANY KIND, either express or implied.
20: // See the License for the specific language governing rights and limitations under the License.
21: //
22: // The Original Code is: all this file.
23: //
24: // The Initial Developer of the Original Code is Michael H. Kay.
25: //
26: // Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
27: //
28: // Contributor(s): none.
29: //
|