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