1 28 29 package com.caucho.xml; 30 31 import org.w3c.dom.Attr ; 32 import org.w3c.dom.Document ; 33 import org.w3c.dom.Element ; 34 import org.w3c.dom.Text ; 35 36 import java.util.HashMap ; 37 38 41 public interface CauchoDocument extends Document , CauchoNode { 42 public final static String DEPENDS = "caucho.depends"; 43 44 47 public Element createElement(String prefix, String local, String url); 48 51 public Attr createAttribute(String prefix, String local, String url); 52 53 public Text createUnescapedTextNode(String text); 54 55 public HashMap getNamespaces(); 56 57 public Object getProperty(String name); 58 public void setProperty(String name, Object value); 59 } 60 | Popular Tags |