1 package org.w3c.xsl; 2 3 import org.w3c.dom.Node ; 4 import org.w3c.dom.Document ; 5 6 9 10 public interface XSLTContext { 11 12 15 16 Node getContextNode(); 17 18 21 22 int getContextPosition(); 23 24 27 28 int getContextSize(); 29 30 35 36 Node getCurrentNode(); 37 38 41 42 Document getOwnerDocument(); 43 44 48 49 Object systemProperty(String namespaceURI, String localName); 50 51 54 55 String stringValue(Node n); 56 57 } 58 59 60 | Popular Tags |