Interface ProcessingInstruction

All Superinterfaces:
Element
All Known Implementing Classes:
ProcessingInstructionImpl

@ClassVersion(sourceVersion="$Id: ProcessingInstruction.java 1030 2022-04-06 13:42:02Z tquadrat $") @API(status=STABLE, since="0.0.5") public sealed interface ProcessingInstruction extends Element permits ProcessingInstructionImpl

The definition for a processing instruction.

According to the specification, an XML processing instruction have this general structure

<?name data ?>

with data being arbitrary text as defined by the target processor that responds to the respective processing instruction.

But in many cases, this data will be structured like regular XML attributes.

Therefore we provide both API: with addData(CharSequence) plain text can be added, with the various setAttribute() methods the data will be formatted as attributes.

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: ProcessingInstruction.java 1030 2022-04-06 13:42:02Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.xml.builder.ProcessingInstruction"

UML Diagram for "org.tquadrat.foundation.xml.builder.ProcessingInstruction"

UML Diagram for "org.tquadrat.foundation.xml.builder.ProcessingInstruction"