Uses of Class
org.jdom.Entity

Packages that use Entity
org.jdom 
org.jdom.output 

Uses of Entity in org.jdom
 

Constructors in org.jdom with parameters of type Entity
IllegalAddException.IllegalAddException(Element base, Entity added, String reason)
           This will create an Exception indicating that the addition of the Entity supplied as content to the supplied element is not allowed.
 

Methods in org.jdom that return Entity
EntityEntity.addChild(String s)
           This will add a String as a child of this Entity.
EntityEntity.addChild(Element element)
           This will add an Element as a child of this Entity.
EntityEntity.addText(String text)
           This will add text to the content of this Entity.
EntityEntity.setChildren(List children)
           This will set the children of this Entity to the Elements within the supplied :ost.
EntityEntity.setContent(String textContent)
           This will set the textual content of the Entity.
EntityEntity.setMixedContent(List mixedContent)
           This will return the content of the element.
 

Methods in org.jdom with parameters of type Entity
ElementElement.addContent(Entity entity)
           This adds entity content to this element.
booleanElement.removeContent(Entity entity)
           This removes the specified Entity.
 

Uses of Entity in org.jdom.output
 

Methods in org.jdom.output with parameters of type Entity
voidXMLOutputter.output(Entity entity, OutputStream out)
           Print out an Entity.
voidXMLOutputter.output(Entity entity, Writer out)
           Print out an Entity.