Uses of Class
org.jdom.EntityRef
-
Packages that use EntityRef Package Description 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 Modifier and Type Method Description EntityRef
DefaultJDOMFactory. entityRef(java.lang.String name)
EntityRef
DefaultJDOMFactory. entityRef(java.lang.String name, java.lang.String systemID)
EntityRef
DefaultJDOMFactory. entityRef(java.lang.String name, java.lang.String publicID, java.lang.String systemID)
EntityRef
JDOMFactory. entityRef(java.lang.String name)
This will create a newEntityRef
with the supplied name.EntityRef
JDOMFactory. entityRef(java.lang.String name, java.lang.String systemID)
This will create a newEntityRef
with the supplied name and system ID.EntityRef
JDOMFactory. entityRef(java.lang.String name, java.lang.String publicID, java.lang.String systemID)
This will create a newEntityRef
with the supplied name, public ID, and system ID.EntityRef
UncheckedJDOMFactory. entityRef(java.lang.String name)
EntityRef
UncheckedJDOMFactory. 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
EntityRef. setName(java.lang.String name)
This will set the name of thisEntityRef
.EntityRef
EntityRef. setPublicID(java.lang.String publicID)
This will set the public ID of thisEntityRef
.EntityRef
EntityRef. setSystemID(java.lang.String systemID)
This will set the system ID of thisEntityRef
. -
Uses of EntityRef in org.jdom.output
Methods in org.jdom.output with parameters of type EntityRef Modifier and Type Method Description 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
-