1 18 package org.apache.batik.dom; 19 20 import org.apache.batik.dom.events.NodeEventTarget; 21 import org.w3c.dom.Document ; 22 import org.w3c.dom.Node ; 23 24 31 32 public interface ExtendedNode extends Node , NodeEventTarget { 33 36 void setNodeName(String v); 37 38 41 boolean isReadonly(); 42 43 46 void setReadonly(boolean v); 47 48 51 void setOwnerDocument(Document doc); 52 53 56 void setParentNode(Node v); 57 58 61 void setPreviousSibling(Node n); 62 63 66 void setNextSibling(Node n); 67 68 72 void setSpecified(boolean v); 73 } 74 | Popular Tags |