| java.lang.Object org.jdom.UncheckedJDOMFactory
UncheckedJDOMFactory | public class UncheckedJDOMFactory implements JDOMFactory(Code) | | Special factory for building documents without any content or structure
checking. This should only be used when you are 100% positive that the
input is absolutely correct. This factory can speed builds, but any
problems in the input will be uncaught until later when they could cause
infinite loops, malformed XML, or worse. Use with extreme caution.
|
Method Summary | |
public void | addContent(Parent parent, Content child) | public void | addNamespaceDeclaration(Element parent, Namespace additional) | public Attribute | attribute(String name, String value, Namespace namespace) | public Attribute | attribute(String name, String value, int type, Namespace namespace) | public Attribute | attribute(String name, String value) | public Attribute | attribute(String name, String value, int type) | public CDATA | cdata(String str) | public Comment | comment(String str) | public DocType | docType(String elementName, String publicID, String systemID) | public DocType | docType(String elementName, String systemID) | public DocType | docType(String elementName) | public Document | document(Element rootElement, DocType docType, String baseURI) | public Document | document(Element rootElement, DocType docType) | public Document | document(Element rootElement) | public Element | element(String name, Namespace namespace) | public Element | element(String name) | public Element | element(String name, String uri) | public Element | element(String name, String prefix, String uri) | public EntityRef | entityRef(String name) | public EntityRef | entityRef(String name, String systemID) | public EntityRef | entityRef(String name, String publicID, String systemID) | public ProcessingInstruction | processingInstruction(String target, Map data) | public ProcessingInstruction | processingInstruction(String target, String data) | public void | setAttribute(Element parent, Attribute a) | public Text | text(String str) |
|
|