org.kde.koala

Class ProcessingInstruction

public class ProcessingInstruction extends Node

The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.

UNKNOWN: The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.

Constructor Summary
protected ProcessingInstruction(Class dummy)
ProcessingInstruction()
ProcessingInstruction(ProcessingInstruction other)
ProcessingInstruction(Node other)
Method Summary
Stringdata()
The content of this processing instruction.
voidsetData(String arg1)
see data
StyleSheetsheet()
Introduced in DOM Level 2 This method is from the LinkStyle interface The style sheet.
Stringtarget()
The target of this processing instruction.

Constructor Detail

ProcessingInstruction

protected ProcessingInstruction(Class dummy)

ProcessingInstruction

public ProcessingInstruction()

ProcessingInstruction

public ProcessingInstruction(ProcessingInstruction other)

ProcessingInstruction

public ProcessingInstruction(Node other)

Method Detail

data

public String data()
The content of this processing instruction. This is from the first non white space character after the target to the character immediately preceding the ?> .

UNKNOWN: The content of this processing instruction.

setData

public void setData(String arg1)
see data

UNKNOWN: see data

sheet

public StyleSheet sheet()
Introduced in DOM Level 2 This method is from the LinkStyle interface The style sheet.

UNKNOWN: Introduced in DOM Level 2 This method is from the LinkStyle interface

target

public String target()
The target of this processing instruction. XML defines this as being the first token following the markup that begins the processing instruction.

UNKNOWN: The target of this processing instruction.