Uses of Class
org.jdom.EntityRef

Packages that use EntityRef
org.jdom   
org.jdom.input   
org.jdom.output   
 

Uses of EntityRef in org.jdom
 

Methods in org.jdom that return EntityRef
 EntityRef EntityRef.detach()
           This detaches the Entity from its parent, or does nothing if the Entity has no parent.
 EntityRef EntityRef.setName(java.lang.String name)
           This will set the name of this EntityRef.
protected  EntityRef EntityRef.setParent(Element parent)
           This will set the parent of this Entity.
 EntityRef EntityRef.setPublicID(java.lang.String newPublicID)
           This will set the public ID of this EntityRef.
 EntityRef EntityRef.setSystemID(java.lang.String newSystemID)
           This will set the system ID of this EntityRef.
 

Methods in org.jdom with parameters of type EntityRef
 Element Element.addContent(EntityRef entity)
           This adds entity content to this element.
 boolean Element.removeContent(EntityRef entity)
           This removes the specified EntityRef.
 

Constructors in org.jdom with parameters of type EntityRef
IllegalAddException(Element base, EntityRef added, java.lang.String reason)
           This will create an Exception indicating that the addition of the EntityRef to the Element is illegal.
 

Uses of EntityRef in org.jdom.input
 

Methods in org.jdom.input that return EntityRef
 EntityRef DefaultJDOMFactory.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, 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.
 

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(EntityRef entity, java.io.Writer out)
           This will handle printing a EntityRef.
 



Copyright ? 2002 Jason Hunter, Brett McLaughlin. All Rights Reserved.