org.apache.abdera.model
Interface ProcessingInstruction


public interface ProcessingInstruction

A processing instruction. Returned by the Abdera XPath implementation when querying for PI nodes (e.g. xpath.selectNodes("//processing-instruction()"); ...)


Method Summary
 void discard()
          Delete this PI
 Factory getFactory()
          The Abdera Factory
<T extends Base>
T
getParentElement()
          The parent node
 java.lang.String getTarget()
          The PI target
 java.lang.String getText()
          The PI text
 void setTarget(java.lang.String target)
          The PI target
 void setText(java.lang.String text)
          The PI text
 

Method Detail

discard

void discard()
Delete this PI


getFactory

Factory getFactory()
The Abdera Factory


getParentElement

<T extends Base> T getParentElement()
The parent node


getTarget

java.lang.String getTarget()
The PI target


setTarget

void setTarget(java.lang.String target)
The PI target


getText

java.lang.String getText()
The PI text


setText

void setText(java.lang.String text)
The PI text