JDOM
1.1.3

Uses of Class
org.jdom.EntityRef

Packages that use EntityRef
org.jdom Classes to represent the components of an XML document. 
org.jdom.output Classes to output JDOM documents to various destinations. 
 

Uses of EntityRef in org.jdom
 

Methods in org.jdom that return EntityRef
 EntityRef UncheckedJDOMFactory.entityRef(java.lang.String name)
           
 EntityRef JDOMFactory.entityRef(java.lang.String name)
          This will create a new EntityRef with the supplied name.
 EntityRef DefaultJDOMFactory.entityRef(java.lang.String name)
           
 EntityRef UncheckedJDOMFactory.entityRef(java.lang.String name, java.lang.String systemID)
           
 EntityRef JDOMFactory.entityRef(java.lang.String name, java.lang.String systemID)
          This will create a new EntityRef with the supplied name and system ID.
 EntityRef DefaultJDOMFactory.entityRef(java.lang.String name, java.lang.String systemID)
           
 EntityRef UncheckedJDOMFactory.entityRef(java.lang.String name, java.lang.String publicID, java.lang.String systemID)
           
 EntityRef JDOMFactory.entityRef(java.lang.String name, java.lang.String publicID, java.lang.String systemID)
          This will create a new EntityRef with the supplied name, public ID, and system ID.
 EntityRef DefaultJDOMFactory.entityRef(java.lang.String name, java.lang.String publicID, java.lang.String systemID)
           
 EntityRef EntityRef.setName(java.lang.String name)
          This will set the name of this EntityRef.
 EntityRef EntityRef.setPublicID(java.lang.String publicID)
          This will set the public ID of this EntityRef.
 EntityRef EntityRef.setSystemID(java.lang.String systemID)
          This will set the system ID of this EntityRef.
 

Uses of EntityRef in org.jdom.output
 

Methods in org.jdom.output with parameters of type EntityRef
 void XMLOutputter.output(EntityRef entity, java.io.OutputStream out)
          Print out a EntityRef.
 void XMLOutputter.output(EntityRef entity, java.io.Writer out)
          Print out a EntityRef.
 java.lang.String XMLOutputter.outputString(EntityRef entity)
          Return a string representing an entity.
protected  void XMLOutputter.printEntityRef(java.io.Writer out, EntityRef entity)
          This will handle printing a EntityRef.
 


JDOM
1.1.3

Copyright © 2011 Jason Hunter, Brett McLaughlin. All Rights Reserved.