Uses of Interface
org.dom4j.ProcessingInstruction
Packages that use ProcessingInstruction
Package
Description
Defines the XML Document Object Model in Java interfaces together
with some helper classes.
An implementation of the dom4j API which also supports the
W3C object model.
Provides input and output via SAX and DOM together with writing dom4j
objects to streams as XML text.
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.
A collection of utility classes for the dom4j API.
-
Uses of ProcessingInstruction in org.dom4j
Methods in org.dom4j that return ProcessingInstructionModifier and TypeMethodDescriptionDocumentFactory.createProcessingInstruction
(String target, String data) DocumentFactory.createProcessingInstruction
(String target, Map data) static ProcessingInstruction
DocumentHelper.createProcessingInstruction
(String pi, String d) static ProcessingInstruction
DocumentHelper.createProcessingInstruction
(String pi, Map data) Branch.processingInstruction
(String target) DOCUMENT ME!Methods in org.dom4j with parameters of type ProcessingInstructionModifier and TypeMethodDescriptionvoid
Branch.add
(ProcessingInstruction pi) Adds the givenProcessingInstruction
to this branch.boolean
Branch.remove
(ProcessingInstruction pi) Removes the givenProcessingInstruction
if the node is an immediate child of this branch.void
Visitor.visit
(ProcessingInstruction node) Visits the givenProcessingInstruction
void
VisitorSupport.visit
(ProcessingInstruction node) -
Uses of ProcessingInstruction in org.dom4j.dom
Classes in org.dom4j.dom that implement ProcessingInstructionModifier and TypeClassDescriptionclass
DOMProcessingInstruction
implements a ProcessingInstruction node which supports the W3C DOM API.Methods in org.dom4j.dom that return ProcessingInstructionModifier and TypeMethodDescriptionDOMDocumentFactory.createProcessingInstruction
(String target, String data) DOMDocumentFactory.createProcessingInstruction
(String target, Map data) -
Uses of ProcessingInstruction in org.dom4j.io
Methods in org.dom4j.io that return ProcessingInstructionModifier and TypeMethodDescriptionSTAXEventReader.createProcessingInstruction
(ProcessingInstruction pi) Constructs a new DOM4J ProcessingInstruction from the provided StAX ProcessingInstruction event.STAXEventReader.readProcessingInstruction
(XMLEventReader reader) Constructs a DOM4J ProcessingInstruction from the provided event stream.Methods in org.dom4j.io with parameters of type ProcessingInstructionModifier and TypeMethodDescriptionprotected void
DOMWriter.appendDOMTree
(Document domDoc, Node domCurrent, ProcessingInstruction pi) STAXEventWriter.createProcessingInstruction
(ProcessingInstruction pi) Constructs a STAXProcessingInstruction
event from a DOM4JProcessingInstruction
.void
SAXWriter.write
(ProcessingInstruction pi) Generates SAX events for the given ProcessingInstructionvoid
XMLWriter.write
(ProcessingInstruction processingInstruction) Writes the givenProcessingInstruction
.void
STAXEventWriter.writeProcessingInstruction
(ProcessingInstruction pi) Writes a DOM4JProcessingInstruction
to the stream.protected void
XMLWriter.writeProcessingInstruction
(ProcessingInstruction pi) -
Uses of ProcessingInstruction in org.dom4j.tree
Classes in org.dom4j.tree that implement ProcessingInstructionModifier and TypeClassDescriptionclass
AbstractProcessingInstruction
is an abstract base class for tree implementors to use for implementation inheritence.class
DefaultProcessingInstruction
is the default Processing Instruction implementation.class
FlyweightProcessingInstruction
is a Flyweight pattern implementation of a singly linked, read-only XML Processing Instruction.Methods in org.dom4j.tree that return ProcessingInstructionModifier and TypeMethodDescriptionAbstractElement.processingInstruction
(String target) DefaultDocument.processingInstruction
(String target) DefaultElement.processingInstruction
(String target) Methods in org.dom4j.tree with parameters of type ProcessingInstructionModifier and TypeMethodDescriptionvoid
AbstractBranch.add
(ProcessingInstruction pi) void
AbstractElement.add
(ProcessingInstruction pi) boolean
AbstractBranch.remove
(ProcessingInstruction pi) boolean
AbstractElement.remove
(ProcessingInstruction pi) -
Uses of ProcessingInstruction in org.dom4j.util
Methods in org.dom4j.util that return ProcessingInstructionModifier and TypeMethodDescriptionProxyDocumentFactory.createProcessingInstruction
(String target, String data) ProxyDocumentFactory.createProcessingInstruction
(String target, Map data) Methods in org.dom4j.util with parameters of type ProcessingInstructionModifier and TypeMethodDescriptionint
NodeComparator.compare
(ProcessingInstruction n1, ProcessingInstruction n2)