Class HtmlIsIndex

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, SubmittableElement, org.w3c.dom.Element, org.w3c.dom.Node

    public class HtmlIsIndex
    extends HtmlElement
    implements SubmittableElement
    Wrapper for the HTML element "isindex". Note that this element has been deprecated in the HTML spec.
    See Also:
    Serialized Form
    • Field Detail

      • TAG_NAME

        public static final java.lang.String TAG_NAME
        The HTML tag represented by this element.
        See Also:
        Constant Field Values
    • Method Detail

      • setValue

        public void setValue​(java.lang.String newValue)
        Sets the value that will be returned during submission of a form.
        Parameters:
        newValue - the value
      • getValue

        public java.lang.String getValue()
        Returns the value that would be send during submission of a form.
        Returns:
        the value
      • getSubmitNameValuePairs

        public NameValuePair[] getSubmitNameValuePairs()

        Returns an array of NameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.

        THIS METHOD IS INTENDED FOR THE USE OF THE FRAMEWORK ONLY AND SHOULD NOT BE USED BY CONSUMERS OF HTMLUNIT. USE AT YOUR OWN RISK.

        Specified by:
        getSubmitNameValuePairs in interface SubmittableElement
        Returns:
        the values that will be sent back to the server whenever this element's containing form is submitted
      • reset

        public void reset()
        Returns the value of this element to the default value or checked state (usually what it was at the time the page was loaded, unless it has been modified via JavaScript).
        Specified by:
        reset in interface SubmittableElement
        See Also:
        SubmittableElement.reset()
      • getPromptAttribute

        public final java.lang.String getPromptAttribute()
        Returns the value of the attribute prompt. Refer to the HTML 4.01 documentation for details on the use of this attribute.
        Returns:
        the value of the attribute prompt or an empty string if that attribute isn't defined