Package org.apache.abdera.model
Interface ProcessingInstruction
-
public interface ProcessingInstructionA processing instruction. Returned by the Abdera XPath implementation when querying for PI nodes (e.g. xpath.selectNodes("//processing-instruction()"); ...). There should be very little reason for applications to use this. It is provided to keep applications from having to deal with the underlying parser implementation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddiscard()Delete this PIFactorygetFactory()The Abdera Factory<T extends Base>
TgetParentElement()The parent nodeStringgetTarget()The PI targetStringgetText()The PI textvoidsetTarget(String target)The PI target<T extends ProcessingInstruction>
TsetText(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
String getTarget()
The PI target
-
setTarget
void setTarget(String target)
The PI target
-
getText
String getText()
The PI text
-
setText
<T extends ProcessingInstruction> T setText(String text)
The PI text
-
-