Class ScriptElement

    • Constructor Detail

      • ScriptElement

        protected ScriptElement()
    • Method Detail

      • as

        public static ScriptElement as​(Element elem)
        Assert that the given Element is compatible with this class and automatically typecast it.
      • is

        public static boolean is​(JavaScriptObject o)
        Determines whether the given JavaScriptObject can be cast to this class. A null object will cause this method to return false.
      • is

        public static boolean is​(Node node)
        Determine whether the given Node can be cast to this class. A null node will cause this method to return false.
      • is

        public static boolean is​(Element elem)
        Determine whether the given Element can be cast to this class. A null node will cause this method to return false.
      • getDefer

        public final java.lang.String getDefer()
        Indicates that the user agent can defer processing of the script.
        See Also:
        W3C HTML Specification
      • getSrc

        public final java.lang.String getSrc()
        URI designating an external script.
        See Also:
        W3C HTML Specification
      • getText

        public final java.lang.String getText()
        The script content of the element.
      • getType

        public final java.lang.String getType()
        The content type of the script language.
        See Also:
        W3C HTML Specification
      • setDefer

        public final void setDefer​(java.lang.String defer)
        Indicates that the user agent can defer processing of the script.
        See Also:
        W3C HTML Specification
      • setSrc

        public final void setSrc​(java.lang.String src)
        URI designating an external script.
        See Also:
        W3C HTML Specification
      • setText

        public final void setText​(java.lang.String text)
        The script content of the element.
      • setType

        public final void setType​(java.lang.String type)
        The content type of the script language.
        See Also:
        W3C HTML Specification