| org.zkoss.idom.input.IDOMFactory
All known Subclasses: org.zkoss.idom.input.DefaultIDOMFactory,
IDOMFactory | public interface IDOMFactory (Code) | | 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.
author: tomyeh See Also: SAXBuilder |
newDocType | public DocType newDocType(String elementName, String publicId, String systemId)(Code) | | Creates a DocType.
Parameters: elementName - the root element's name Parameters: publicId - the public Id; null for empty Parameters: systemId - the system Id; null for empty |
newDocument | public Document newDocument(Element rootElement, DocType docType)(Code) | | Creates a Document.
Parameters: docType - the document type; null for not available |
|
|