Package | Description |
---|---|
org.jdom |
Classes to represent the components of an XML document.
|
org.jdom.output |
Classes to output JDOM documents to various destinations.
|
Modifier and Type | Method and Description |
---|---|
EntityRef |
UncheckedJDOMFactory.entityRef(String name) |
EntityRef |
JDOMFactory.entityRef(String name)
This will create a new
EntityRef
with the supplied name. |
EntityRef |
DefaultJDOMFactory.entityRef(String name) |
EntityRef |
UncheckedJDOMFactory.entityRef(String name,
String systemID) |
EntityRef |
JDOMFactory.entityRef(String name,
String systemID)
This will create a new
EntityRef
with the supplied name and system ID. |
EntityRef |
DefaultJDOMFactory.entityRef(String name,
String systemID) |
EntityRef |
UncheckedJDOMFactory.entityRef(String name,
String publicID,
String systemID) |
EntityRef |
JDOMFactory.entityRef(String name,
String publicID,
String systemID)
This will create a new
EntityRef
with the supplied name, public ID, and system ID. |
EntityRef |
DefaultJDOMFactory.entityRef(String name,
String publicID,
String systemID) |
EntityRef |
EntityRef.setName(String name)
This will set the name of this
EntityRef . |
EntityRef |
EntityRef.setPublicID(String publicID)
This will set the public ID of this
EntityRef . |
EntityRef |
EntityRef.setSystemID(String systemID)
This will set the system ID of this
EntityRef . |
Modifier and Type | Method and Description |
---|---|
void |
XMLOutputter.output(EntityRef entity,
OutputStream out)
Print out a
. |
void |
XMLOutputter.output(EntityRef entity,
Writer out)
Print out a
. |
String |
XMLOutputter.outputString(EntityRef entity)
Return a string representing an entity.
|
protected void |
XMLOutputter.printEntityRef(Writer out,
EntityRef entity)
This will handle printing a
. |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.