1 23 24 package org.enhydra.xml.lazydom; 25 26 import org.w3c.dom.Document ; 27 import org.w3c.dom.Node ; 28 29 32 55 public interface LazyNode extends Node { 56 59 public static final int NULL_NODE_ID = -1; 60 61 64 public static final int DOCUMENT_NODE_ID = 0; 65 66 71 public void makeTemplateNode(int nodeId); 72 73 79 public int getNodeId(); 80 81 84 public boolean isTemplateNode(); 85 86 89 public LazyNode getTemplateNode(); 90 91 94 public LazyNode templateClone(Document ownerDocument); 95 } 96 | Popular Tags |