Uses of Class
org.cdmckay.coffeedom.DocType

Packages that use DocType
org.cdmckay.coffeedom Classes to represent the components of an XML document. 
org.cdmckay.coffeedom.adapters Classes to interface with various DOM implementations. 
org.cdmckay.coffeedom.output Classes to output CoffeeDOM documents to various destinations. 
 

Uses of DocType in org.cdmckay.coffeedom
 

Methods in org.cdmckay.coffeedom that return DocType
 DocType DocType.clone()
           
 DocType DocType.detach()
           
 DocType UncheckedCoffeeDOMFactory.docType(String elementName)
           
 DocType DefaultCoffeeDOMFactory.docType(String elementName)
           
 DocType CoffeeDOMFactory.docType(String elementName)
          This will create the DocType with the specified element name
 DocType UncheckedCoffeeDOMFactory.docType(String elementName, String systemID)
           
 DocType DefaultCoffeeDOMFactory.docType(String elementName, String systemID)
           
 DocType CoffeeDOMFactory.docType(String elementName, String systemID)
          This will create the DocType with the specified element name and reference to an external DTD.
 DocType UncheckedCoffeeDOMFactory.docType(String elementName, String publicID, String systemID)
           
 DocType DefaultCoffeeDOMFactory.docType(String elementName, String publicID, String systemID)
           
 DocType CoffeeDOMFactory.docType(String elementName, String publicID, String systemID)
          This will create the DocType with the specified element name and a reference to an external DTD.
 DocType Document.getDocType()
          This will return the DocType declaration for this Document, or null if none exists.
 DocType DocType.setElementName(String elementName)
          This will set the root element name declared by this DOCTYPE declaration.
protected  DocType DocType.setParent(Parent parent)
           
 DocType DocType.setPublicID(String publicID)
          This will set the public ID of an externally referenced DTD.
 DocType DocType.setSystemID(String systemID)
          This will set the system ID of an externally referenced DTD.
 

Methods in org.cdmckay.coffeedom with parameters of type DocType
 Document UncheckedCoffeeDOMFactory.document(Element rootElement, DocType docType)
           
 Document DefaultCoffeeDOMFactory.document(Element rootElement, DocType docType)
           
 Document CoffeeDOMFactory.document(Element rootElement, DocType docType)
          This will create a new Document, with the supplied Element as the root element and the supplied DocType declaration.
 Document UncheckedCoffeeDOMFactory.document(Element rootElement, DocType docType, String baseURI)
           
 Document DefaultCoffeeDOMFactory.document(Element rootElement, DocType docType, String baseURI)
           
 Document CoffeeDOMFactory.document(Element rootElement, DocType docType, String baseURI)
          This will create a new Document, with the supplied Element as the root element and the supplied DocType declaration.
 Document Document.setDocType(DocType docType)
          This will set the DocType declaration for this Document.
 

Constructors in org.cdmckay.coffeedom with parameters of type DocType
Document(Element rootElement, DocType docType)
          This will create a new Document, with the supplied Element as the root element and the supplied DocType declaration.
Document(Element rootElement, DocType docType, String baseURI)
          This will create a new Document, with the supplied Element as the root element, the supplied DocType declaration, and the specified base URI.
 

Uses of DocType in org.cdmckay.coffeedom.adapters
 

Methods in org.cdmckay.coffeedom.adapters with parameters of type DocType
 Document DOMAdapter.createDocument(DocType doctype)
          This creates an empty Document object based on a specific parser implementation with the given DOCTYPE.
 Document AbstractDOMAdapter.createDocument(DocType doctype)
          This creates an empty Document object based on a specific parser implementation with the given DOCTYPE.
 

Uses of DocType in org.cdmckay.coffeedom.output
 

Methods in org.cdmckay.coffeedom.output with parameters of type DocType
 void XMLOutputter.output(DocType docType, OutputStream out)
          Print out the DocType.
 void XMLOutputter.output(DocType doctype, Writer out)
          Print out the DocType.
 String XMLOutputter.outputString(DocType docType)
          Return a string representing a DocType.
protected  void XMLOutputter.printDocType(Writer out, DocType docType)
          This handle printing the DOCTYPE declaration if one exists.
 



Copyright © 2011. All Rights Reserved.