Uses of Class
org.jdom2.ProcessingInstruction
Packages that use ProcessingInstruction
Package
Description
Classes representing the components of an XML document.
Classes to both filter and generically type-cast nodes of a document
based on type, name, value, or other aspects, and to boolean
AND/OR/NEGATE these rules.
Classes to build JDOM documents from various sources.
Extended JDOM Content Classes that contain location coordinates.
Classes to output JDOM documents to various destinations.
Classes used to implement output functionality that are not part of the
actual Output API, but rather part of the implementation.
-
Uses of ProcessingInstruction in org.jdom2
Methods in org.jdom2 that return ProcessingInstructionModifier and TypeMethodDescriptionProcessingInstruction.clone()
ProcessingInstruction.detach()
DefaultJDOMFactory.processingInstruction
(int line, int col, String target) DefaultJDOMFactory.processingInstruction
(int line, int col, String target, String data) DefaultJDOMFactory.processingInstruction
(int line, int col, String target, Map<String, String> data) final ProcessingInstruction
DefaultJDOMFactory.processingInstruction
(String target) final ProcessingInstruction
DefaultJDOMFactory.processingInstruction
(String target, String data) final ProcessingInstruction
DefaultJDOMFactory.processingInstruction
(String target, Map<String, String> data) JDOMFactory.processingInstruction
(int line, int col, String target) This will create a newProcessingInstruction
with the specified target and no data.JDOMFactory.processingInstruction
(int line, int col, String target, String data) This will create a newProcessingInstruction
with the specified target and data.JDOMFactory.processingInstruction
(int line, int col, String target, Map<String, String> data) This will create a newProcessingInstruction
with the specified target and data.JDOMFactory.processingInstruction
(String target) This will create a newProcessingInstruction
with the specified target and no data.JDOMFactory.processingInstruction
(String target, String data) This will create a newProcessingInstruction
with the specified target and data.JDOMFactory.processingInstruction
(String target, Map<String, String> data) This will create a newProcessingInstruction
with the specified target and data.SlimJDOMFactory.processingInstruction
(int line, int col, String target) SlimJDOMFactory.processingInstruction
(int line, int col, String target, String data) SlimJDOMFactory.processingInstruction
(int line, int col, String target, Map<String, String> data) UncheckedJDOMFactory.processingInstruction
(int line, int col, String target) UncheckedJDOMFactory.processingInstruction
(int line, int col, String target, String data) UncheckedJDOMFactory.processingInstruction
(int line, int col, String target, Map<String, String> data) This will set the raw data for the PI.This will set the name/value pairs within the passedMap
as the pairs for the data of this PI.protected ProcessingInstruction
ProcessingInstruction.setPseudoAttribute
(String name, String value) This will set a pseudo attribute with the given name and value.This will set the target for the PI. -
Uses of ProcessingInstruction in org.jdom2.filter
Methods in org.jdom2.filter that return types with arguments of type ProcessingInstructionModifier and TypeMethodDescriptionstatic final Filter
<ProcessingInstruction> Filters.processinginstruction()
Return a Filter that matches anyProcessingInstruction
data. -
Uses of ProcessingInstruction in org.jdom2.input
Methods in org.jdom2.input that return ProcessingInstructionModifier and TypeMethodDescriptionDOMBuilder.build
(ProcessingInstruction pi) This will build a JDOM ProcessingInstruction from an existing DOM ProcessingInstruction -
Uses of ProcessingInstruction in org.jdom2.located
Subclasses of ProcessingInstruction in org.jdom2.locatedModifier and TypeClassDescriptionclass
An XML processing instruction.Methods in org.jdom2.located that return ProcessingInstructionModifier and TypeMethodDescriptionLocatedJDOMFactory.processingInstruction
(int line, int col, String target) LocatedJDOMFactory.processingInstruction
(int line, int col, String target, String data) LocatedJDOMFactory.processingInstruction
(int line, int col, String target, Map<String, String> data) -
Uses of ProcessingInstruction in org.jdom2.output
Methods in org.jdom2.output with parameters of type ProcessingInstructionModifier and TypeMethodDescriptionDOMOutputter.output
(ProcessingInstruction pi) This converts the JDOMProcessingInstruction
parameter to a DOM ProcessingInstruction, returning the DOM version.DOMOutputter.output
(Document basedoc, ProcessingInstruction pi) This converts the JDOMProcessingInstruction
parameter to a DOM ProcessingInstruction, returning the DOM version.final void
StAXEventOutputter.output
(ProcessingInstruction pi, XMLEventConsumer out) Print out a
.ProcessingInstruction
final void
StAXStreamOutputter.output
(ProcessingInstruction pi, XMLStreamWriter out) Print out a
.ProcessingInstruction
final void
XMLOutputter.output
(ProcessingInstruction pi, OutputStream out) Print out a
.ProcessingInstruction
final void
XMLOutputter.output
(ProcessingInstruction pi, Writer out) Print out a
.ProcessingInstruction
final String
XMLOutputter.outputString
(ProcessingInstruction pi) Return a string representing aProcessingInstruction
. -
Uses of ProcessingInstruction in org.jdom2.output.support
Methods in org.jdom2.output.support with parameters of type ProcessingInstructionModifier and TypeMethodDescriptionprotected ProcessingInstruction
AbstractDOMOutputProcessor.printProcessingInstruction
(FormatStack fstack, Document basedoc, ProcessingInstruction pi) This will handle printing of aProcessingInstruction
.protected void
AbstractSAXOutputProcessor.printProcessingInstruction
(SAXTarget out, FormatStack fstack, ProcessingInstruction pi) This will handle printing of aProcessingInstruction
.protected void
AbstractStAXEventProcessor.printProcessingInstruction
(XMLEventConsumer out, FormatStack fstack, XMLEventFactory eventfactory, ProcessingInstruction pi) This will handle printing of aProcessingInstruction
.protected void
AbstractStAXStreamProcessor.printProcessingInstruction
(XMLStreamWriter out, FormatStack fstack, ProcessingInstruction pi) This will handle printing of aProcessingInstruction
.protected void
AbstractXMLOutputProcessor.printProcessingInstruction
(Writer out, FormatStack fstack, ProcessingInstruction pi) This will handle printing of aProcessingInstruction
.AbstractDOMOutputProcessor.process
(Document basedoc, Format format, ProcessingInstruction pi) void
AbstractSAXOutputProcessor.process
(SAXTarget out, Format format, ProcessingInstruction pi) void
AbstractStAXEventProcessor.process
(XMLEventConsumer out, Format format, XMLEventFactory eventfactory, ProcessingInstruction pi) void
AbstractStAXStreamProcessor.process
(XMLStreamWriter out, Format format, ProcessingInstruction pi) void
AbstractXMLOutputProcessor.process
(Writer out, Format format, ProcessingInstruction pi) DOMOutputProcessor.process
(Document basedoc, Format format, ProcessingInstruction pi) This will convert the
using the given DOM Document to create the resulting DOM ProcessingInstruction.ProcessingInstruction
void
SAXOutputProcessor.process
(SAXTarget out, Format format, ProcessingInstruction pi) Print out a
.ProcessingInstruction
void
StAXEventProcessor.process
(XMLEventConsumer out, Format format, XMLEventFactory eventfactory, ProcessingInstruction pi) Print out a
.ProcessingInstruction
void
StAXStreamProcessor.process
(XMLStreamWriter out, Format format, ProcessingInstruction pi) Print out a
.ProcessingInstruction
void
XMLOutputProcessor.process
(Writer out, Format format, ProcessingInstruction pi) Print out a
.ProcessingInstruction