Package org.apache.abdera.model
Interface ProcessingInstruction
-
@Deprecated(since="2021-07-29") public interface ProcessingInstruction
Deprecated.This API is deprecated as Apache Abdera is a retired project since 2017.A 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 Deprecated Methods Modifier and Type Method Description void
discard()
Deprecated.Delete this PIFactory
getFactory()
Deprecated.The Abdera Factory<T extends Base>
TgetParentElement()
Deprecated.The parent nodejava.lang.String
getTarget()
Deprecated.The PI targetjava.lang.String
getText()
Deprecated.The PI textvoid
setTarget(java.lang.String target)
Deprecated.The PI target<T extends ProcessingInstruction>
TsetText(java.lang.String text)
Deprecated.The PI text
-
-
-
Method Detail
-
discard
void discard()
Deprecated.Delete this PI
-
getFactory
Factory getFactory()
Deprecated.The Abdera Factory
-
getParentElement
<T extends Base> T getParentElement()
Deprecated.The parent node
-
getTarget
java.lang.String getTarget()
Deprecated.The PI target
-
setTarget
void setTarget(java.lang.String target)
Deprecated.The PI target
-
getText
java.lang.String getText()
Deprecated.The PI text
-
setText
<T extends ProcessingInstruction> T setText(java.lang.String text)
Deprecated.The PI text
-
-