|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Entity | |
org.jdom | |
org.jdom.output |
Uses of Entity in org.jdom |
Methods in org.jdom that return Entity | |
Entity |
Entity.setContent(java.lang.String textContent)
This will set the textual content of the Entity . |
Entity |
Entity.setMixedContent(java.util.List mixedContent)
This will return the content of the element. |
Entity |
Entity.setChildren(java.util.List children)
This will set the children of this Entity to the
Element s within the supplied :ost . |
Entity |
Entity.addText(java.lang.String text)
This will add text to the content of this Entity . |
Entity |
Entity.addChild(Element element)
This will add an Element as a child of this
Entity . |
Entity |
Entity.addChild(java.lang.String s)
This will add a String as a child of this
Entity . |
Methods in org.jdom with parameters of type Entity | |
Element |
Element.addContent(Entity entity)
This adds entity content to this element. |
Element |
Element.addChild(Entity entity)
Deprecated. Use addContent(Entity) instead |
boolean |
Element.removeChild(Entity entity)
Deprecated. Use getMixedContent().remove(entity) instead |
boolean |
Element.removeContent(Entity entity)
Deprecated. Use getMixedContent().remove(entity) instead |
Uses of Entity in org.jdom.output |
Methods in org.jdom.output with parameters of type Entity | |
void |
XMLOutputter.output(Entity entity,
java.io.Writer out)
Print out an . |
void |
XMLOutputter.output(Entity entity,
java.io.OutputStream out)
Print out an . |
protected void |
XMLOutputter.printEntity(Entity entity,
java.io.Writer out)
This will handle printing out an . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |