|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IDOMFactory
A DOM factory. It is the interface used by SaxBuild to create corresponding vertices. By implementing this interface or overriding DefaultDomFactory, caller could create a set of vertices other than the default ones.
SAXBuilder| Method Summary | |
|---|---|
Attribute |
newAttribute(Namespace ns,
String lname,
String value)
Creates an Attribute with namespace. |
Attribute |
newAttribute(String lname,
String value)
Creates an Attribute without namespace. |
CData |
newCData(String text)
Creates a CData. |
Comment |
newComment(String text)
Creates a Comment. |
DocType |
newDocType(String elementName,
String publicId,
String systemId)
Creates a DocType. |
Document |
newDocument(Element rootElement,
DocType docType)
Creates a Document. |
Element |
newElement(Namespace ns,
String lname)
Creates an Element with a namespace. |
Element |
newElement(String lname)
Creates an Element without namespace. |
EntityReference |
newEntityRef(String name)
Creates an EntityReference. |
ProcessingInstruction |
newProcessingInstruction(String target,
String data)
Creates a processing instruction. |
Text |
newText(String text)
Creates a Text. |
| Method Detail |
|---|
Attribute newAttribute(String lname,
String value)
Attribute newAttribute(Namespace ns,
String lname,
String value)
CData newCData(String text)
Comment newComment(String text)
DocType newDocType(String elementName,
String publicId,
String systemId)
elementName - the root element's namepublicId - the public Id; null for emptysystemId - the system Id; null for empty
Document newDocument(Element rootElement,
DocType docType)
docType - the document type; null for not available
Element newElement(Namespace ns,
String lname)
Element newElement(String lname)
ProcessingInstruction newProcessingInstruction(String target,
String data)
data - the raw data; null for emptyEntityReference newEntityRef(String name)
name - the entity reference's nameText newText(String text)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||