Uses of Interface
org.dom4j.Text
-
Packages that use Text Package Description org.dom4j Defines the XML Document Object Model in Java interfaces together with some helper classes.org.dom4j.dom An implementation of the dom4j API which also supports the W3C object model.org.dom4j.io Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.org.dom4j.tree Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.org.dom4j.util A collection of utility classes for the dom4j API. -
-
Uses of Text in org.dom4j
Methods in org.dom4j that return Text Modifier and Type Method Description Text
DocumentFactory. createText(java.lang.String text)
static Text
DocumentHelper. createText(java.lang.String text)
Methods in org.dom4j with parameters of type Text Modifier and Type Method Description void
Element. add(Text text)
Adds the givenText
to this element.boolean
Element. remove(Text text)
Removes the givenText
if the node is an immediate child of this element.void
Visitor. visit(Text node)
Visits the givenText
void
VisitorSupport. visit(Text node)
-
Uses of Text in org.dom4j.dom
Classes in org.dom4j.dom that implement Text Modifier and Type Class Description class
DOMText
DOMText
implements a Text node which supports the W3C DOM API.Methods in org.dom4j.dom that return Text Modifier and Type Method Description Text
DOMDocumentFactory. createText(java.lang.String text)
protected Text
DOMText. createText(java.lang.String text)
-
Uses of Text in org.dom4j.io
Methods in org.dom4j.io with parameters of type Text Modifier and Type Method Description javax.xml.stream.events.Characters
STAXEventWriter. createCharacters(Text text)
Constructs a STAXCharacters
event from a DOM4JText
.void
XMLWriter. write(Text text)
Writes the givenText
.void
STAXEventWriter. writeText(Text text)
Writes a DOM4JText
to the stream. -
Uses of Text in org.dom4j.tree
Classes in org.dom4j.tree that implement Text Modifier and Type Class Description class
AbstractText
AbstractText
is an abstract base class for tree implementors to use for implementation inheritence.class
DefaultText
DefaultText
is the default Text implementation.class
FlyweightText
FlyweightText
is a Flyweight pattern implementation of a singly linked, read-only XML Text.Methods in org.dom4j.tree with parameters of type Text Modifier and Type Method Description void
AbstractElement. add(Text text)
boolean
AbstractElement. remove(Text text)
-
Uses of Text in org.dom4j.util
Methods in org.dom4j.util that return Text Modifier and Type Method Description Text
ProxyDocumentFactory. createText(java.lang.String text)
-