1 7 8 package org.dom4j; 9 10 import java.util.List ; 11 12 20 public interface DocumentType extends Node { 21 27 String getElementName(); 28 29 36 void setElementName(String elementName); 37 38 String getPublicID(); 39 40 void setPublicID(String publicID); 41 42 String getSystemID(); 43 44 void setSystemID(String systemID); 45 46 52 List getInternalDeclarations(); 53 54 61 void setInternalDeclarations(List declarations); 62 63 69 List getExternalDeclarations(); 70 71 78 void setExternalDeclarations(List declarations); 79 } 80 81 117 | Popular Tags |