| java.lang.Object org.jdom.DefaultJDOMFactory
DefaultJDOMFactory | public class DefaultJDOMFactory implements JDOMFactory(Code) | | Creates the standard top-level JDOM classes (Element, Document, Comment,
etc). A subclass of this factory might construct custom classes.
version: $Revision: 1.1 $, $Date: 2005/04/27 09:32:40 $ author: Ken Rune Holland author: Phil Nelson author: Bradley S. Huffman |
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 text) | public Comment | comment(String text) | 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) | public Document | document(Element rootElement, DocType docType, String baseURI) | 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 publicID, String systemID) | public EntityRef | entityRef(String name, 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 text) |
DefaultJDOMFactory | public DefaultJDOMFactory()(Code) | | |
|
|