class xml::XPi

sys::Obj
  xml::XNode
    xml::XPi

@Js

Source

XML processing instruction node.

make

new make(Str target, Str val)

Source

Construct a processing instruction with specified target and val.

nodeType

virtual override XNodeType nodeType()

Source

Return the XNodeType.pi.

target

Str target

Source

Target name for the processing instruction. It must be a valid XML name production.

toStr

virtual override Str toStr()

Source

Return string representation of this processing instruction.

val

Str val

Source

String value of processing instruction. This value must not contain the "?>".

write

virtual override Void write(OutStream out)

Source

Write this node to the output stream.