All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.jdom.input.DefaultJDOMFactory

java.lang.Object
   |
   +----org.jdom.input.DefaultJDOMFactory

public class DefaultJDOMFactory
extends Object
implements JDOMFactory

DefaultJDOMFactory creates the standard top-level JDOM classes (Element, Document, Comment, etc). A subclass of this factory might construct custom classes.

Version:
$Revision: 1.6 $, $Date: 2002/03/12 07:57:06 $
Author:
Ken Rune Holland, Phil Nelson, Bradley S. Huffman

Constructor Index

 o DefaultJDOMFactory()

Method Index

 o attribute(String, String)
 o attribute(String, String, int)
 o attribute(String, String, int, Namespace)
 o attribute(String, String, Namespace)
 o cdata(String)
 o comment(String)
 o docType(String)
 o docType(String, String)
 o docType(String, String, String)
 o document(Element)
 o document(Element, DocType)
 o element(String)
 o element(String, Namespace)
 o element(String, String)
 o element(String, String, String)
 o entityRef(String)
 o entityRef(String, String, String)
 o processingInstruction(String, Map)
 o processingInstruction(String, String)
 o text(String)

Constructors

 o DefaultJDOMFactory
 public DefaultJDOMFactory()

Methods

 o attribute
 public Attribute attribute(String name,
                            String value,
                            Namespace namespace)
 o attribute
 public Attribute attribute(String name,
                            String value,
                            int type,
                            Namespace namespace)
 o attribute
 public Attribute attribute(String name,
                            String value)
 o attribute
 public Attribute attribute(String name,
                            String value,
                            int type)
 o cdata
 public CDATA cdata(String text)
 o text
 public Text text(String text)
 o comment
 public Comment comment(String text)
 o docType
 public DocType docType(String elementName,
                        String publicID,
                        String systemID)
 o docType
 public DocType docType(String elementName,
                        String systemID)
 o docType
 public DocType docType(String elementName)
 o document
 public Document document(Element rootElement,
                          DocType docType)
 o document
 public Document document(Element rootElement)
 o element
 public Element element(String name,
                        Namespace namespace)
 o element
 public Element element(String name)
 o element
 public Element element(String name,
                        String uri)
 o element
 public Element element(String name,
                        String prefix,
                        String uri)
 o processingInstruction
 public ProcessingInstruction processingInstruction(String target,
                                                    Map data)
 o processingInstruction
 public ProcessingInstruction processingInstruction(String target,
                                                    String data)
 o entityRef
 public EntityRef entityRef(String name)
 o entityRef
 public EntityRef entityRef(String name,
                            String publicID,
                            String systemID)

All Packages  Class Hierarchy  This Package  Previous  Next  Index