1 package net.sf.saxon.dom; 2 3 import org.w3c.dom.DOMException ; 4 import org.w3c.dom.ProcessingInstruction ; 5 6 10 11 public class PIOverNodeInfo extends NodeOverNodeInfo implements ProcessingInstruction { 12 13 18 public String getTarget() { 19 return node.getLocalPart(); 20 } 21 22 27 public String getData() { 28 return node.getStringValue(); 29 } 30 31 38 public void setData(String data) throws DOMException { 39 disallowUpdate(); 40 } 41 } 42 43 | Popular Tags |