All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----org.jdom.input.DefaultJDOMFactory
DefaultJDOMFactory
creates the standard
top-level JDOM classes (Element, Document, Comment, etc).
A subclass of this factory might construct custom classes.
public DefaultJDOMFactory()
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 Text text(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)
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 ProcessingInstruction processingInstruction(String target, Map data)
public ProcessingInstruction processingInstruction(String target, String data)
public EntityRef entityRef(String name)
public EntityRef entityRef(String name, String publicID, String systemID)
All Packages Class Hierarchy This Package Previous Next Index