org.kde.koala
Class ProcessingInstruction

java.lang.Object
  extended by org.kde.koala.Node
      extended by org.kde.koala.ProcessingInstruction
All Implemented Interfaces:
org.kde.qt.QtSupport

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.


Constructor Summary
  ProcessingInstruction()
           
protected ProcessingInstruction(java.lang.Class dummy)
           
  ProcessingInstruction(Node other)
           
  ProcessingInstruction(ProcessingInstruction other)
           
 
Method Summary
 java.lang.String data()
          The content of this processing instruction.
 void setData(java.lang.String arg1)
          see data
 StyleSheet sheet()
          Introduced in DOM Level 2 This method is from the LinkStyle interface The style sheet.
 java.lang.String target()
          The target of this processing instruction.
 
Methods inherited from class org.kde.koala.Node
addEventListener, appendChild, applyChanges, attributes, childNodes, cloneNode, dispatchEvent, elementId, firstChild, getRect, hasAttributes, hasChildNodes, index, insertBefore, isNull, isSupported, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, normalize, op_equals, op_not_equals, ownerDocument, parentNode, prefix, previousSibling, removeChild, removeEventListener, replaceChild, setNodeValue, setPrefix
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProcessingInstruction

protected ProcessingInstruction(java.lang.Class dummy)

ProcessingInstruction

public ProcessingInstruction()

ProcessingInstruction

public ProcessingInstruction(ProcessingInstruction other)

ProcessingInstruction

public ProcessingInstruction(Node other)
Method Detail

target

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


data

public java.lang.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 ?> .


setData

public void setData(java.lang.String arg1)
see data


sheet

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