Class StyleSheetProcessingInstruction

    • Field Detail

      • readonly

        protected boolean readonly
        Is this node immutable?
      • sheet

        protected transient org.w3c.dom.stylesheets.StyleSheet sheet
        The style sheet.
      • pseudoAttributes

        protected transient java.util.HashMap<java.lang.String,​java.lang.String> pseudoAttributes
        The pseudo attributes.
    • Constructor Detail

      • StyleSheetProcessingInstruction

        protected StyleSheetProcessingInstruction()
        Creates a new ProcessingInstruction object.
      • StyleSheetProcessingInstruction

        public StyleSheetProcessingInstruction​(java.lang.String data,
                                               AbstractDocument owner,
                                               StyleSheetFactory f)
        Creates a new ProcessingInstruction object.
    • Method Detail

      • isReadonly

        public boolean isReadonly()
        Tests whether this node is readonly.
        Specified by:
        isReadonly in interface ExtendedNode
      • setReadonly

        public void setReadonly​(boolean v)
        Sets this node readonly attribute.
        Specified by:
        setReadonly in interface ExtendedNode
      • getTarget

        public java.lang.String getTarget()
        DOM: Implements ProcessingInstruction.getTarget().
        Specified by:
        getTarget in interface org.w3c.dom.ProcessingInstruction
        Returns:
        "xml-stylesheet".
      • getSheet

        public org.w3c.dom.stylesheets.StyleSheet getSheet()
        The style sheet.
        Specified by:
        getSheet in interface org.w3c.dom.stylesheets.LinkStyle
      • getPseudoAttributes

        public java.util.HashMap<java.lang.String,​java.lang.String> getPseudoAttributes()
        Returns the pseudo attributes in a table.
      • setData

        public void setData​(java.lang.String data)
                     throws org.w3c.dom.DOMException
        DOM: Implements ProcessingInstruction.setData(String).
        Specified by:
        setData in interface org.w3c.dom.ProcessingInstruction
        Overrides:
        setData in class AbstractProcessingInstruction
        Throws:
        org.w3c.dom.DOMException
      • newNode

        protected org.w3c.dom.Node newNode()
        Returns a new uninitialized instance of this object's class.
        Specified by:
        newNode in class AbstractNode