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()"); ...). 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 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