Class HtmlInput

    • Field Detail

      • TAG_NAME

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

      • HtmlInput

        public HtmlInput​(SgmlPage page,
                         java.util.Map<java.lang.String,​DomAttr> attributes)
        Creates an instance.
        Parameters:
        page - the page that contains this element
        attributes - the initial attributes
      • HtmlInput

        public HtmlInput​(java.lang.String qualifiedName,
                         SgmlPage page,
                         java.util.Map<java.lang.String,​DomAttr> attributes)
        Creates an instance.
        Parameters:
        qualifiedName - the qualified name of the element type to instantiate
        page - the page that contains this element
        attributes - the initial attributes
    • Method Detail

      • setAttribute

        public void setAttribute​(java.lang.String attributeName,
                                 java.lang.String attributeValue)
        Sets the value of the attribute specified by name.
        Specified by:
        setAttribute in interface org.w3c.dom.Element
        Overrides:
        setAttribute in class DomElement
        Parameters:
        attributeName - the name of the attribute
        attributeValue - the value of the attribute
      • setValueAttribute

        public void setValueAttribute​(java.lang.String newValue)
        Sets the content of the value attribute.
        Parameters:
        newValue - the new 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
      • getTypeAttribute

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

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

        public final java.lang.String getValueAttribute()

        Return the value of the attribute "value". Refer to the HTML 4.01 documentation for details on the use of this attribute.

        Returns:
        the value of the attribute value or an empty string if that attribute isn't defined
      • getCheckedAttribute

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

        public final java.lang.String getDisabledAttribute()
        Returns the value of the attribute disabled. Refer to the HTML 4.01 documentation for details on the use of this attribute.
        Specified by:
        getDisabledAttribute in interface DisabledElement
        Returns:
        the value of the attribute disabled or an empty string if that attribute isn't defined
      • isDisabled

        public final boolean isDisabled()
        Returns true if the disabled attribute is set for this element.
        Specified by:
        isDisabled in interface DisabledElement
        Returns:
        true if the disabled attribute is set for this element
      • getReadOnlyAttribute

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

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

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

        protected int getMaxLength()
        Gets the max length if defined, Integer.MAX_VALUE if none.
        Returns:
        the max length
      • getMinLengthAttribute

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

        protected int getMinLength()
        Gets the min length if defined, Integer.MIN_VALUE if none.
        Returns:
        the min length
      • getSrcAttribute

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

        public void setSrcAttribute​(java.lang.String src)
        Sets the src attribute.
        Parameters:
        src - the src attribute
      • getAltAttribute

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

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

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

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

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

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

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

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

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

        public final java.lang.String getAlignAttribute()
        Returns the value of the attribute align. Refer to the HTML 4.01 documentation for details on the use of this attribute.
        Returns:
        the value of the attribute align or an empty string if that attribute isn't defined.
      • 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()
      • setDefaultValue

        protected void setDefaultValue​(java.lang.String defaultValue,
                                       boolean modifyValue)
        Sets the default value, optionally also modifying the current value.
        Parameters:
        defaultValue - the new default value
        modifyValue - Whether or not to set the current value to the default value
      • setChecked

        public Page setChecked​(boolean isChecked)
        Sets the checked attribute, returning the page that occupies this input's window after setting the attribute. Note that the returned page may or may not be the original page, depending on the presence of JavaScript event handlers, etc.
        Parameters:
        isChecked - true if this element is to be selected
        Returns:
        the page that occupies this input's window after setting the attribute
      • setReadOnly

        public void setReadOnly​(boolean isReadOnly)
        Sets the readOnly attribute.
        Parameters:
        isReadOnly - true if this element is read only
      • isChecked

        public boolean isChecked()
        Returns true if this element is currently selected.
        Returns:
        true if this element is currently selected
      • isReadOnly

        public boolean isReadOnly()
        Returns true if this element is read only.
        Returns:
        true if this element is read only
      • handles

        public boolean handles​(com.gargoylesoftware.htmlunit.javascript.host.event.Event event)
        Indicates if the provided event can be applied to this node. Overwrite this.
        Overrides:
        handles in class HtmlElement
        Parameters:
        event - the event
        Returns:
        false if the event can't be applied
      • setAttributeNS

        protected void setAttributeNS​(java.lang.String namespaceURI,
                                      java.lang.String qualifiedName,
                                      java.lang.String attributeValue,
                                      boolean notifyAttributeChangeListeners,
                                      boolean notifyMutationObservers)
        Sets the value of the attribute specified by namespace and qualified name.
        Overrides:
        setAttributeNS in class HtmlElement
        Parameters:
        namespaceURI - the URI that identifies an XML namespace
        qualifiedName - the qualified name (prefix:local) of the attribute
        attributeValue - the value of the attribute
        notifyAttributeChangeListeners - to notify the associated HtmlAttributeChangeListeners
        notifyMutationObservers - to notify MutationObservers or not
      • getOriginalName

        public java.lang.String getOriginalName()
        Gets the first value of the name attribute of this field before any change.
        Specified by:
        getOriginalName in interface FormFieldWithNameHistory
        Returns:
        the original name (which is the same as the current one when no change has been made)
      • getNewNames

        public java.util.Collection<java.lang.String> getNewNames()
        Get all the names this field got after the original one.
        Specified by:
        getNewNames in interface FormFieldWithNameHistory
        Returns:
        an empty collection if the name attribute has never been changed.
      • markAsCreatedByJavascript

        public void markAsCreatedByJavascript()
        INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
        Marks this frame as created by javascript. This is needed to handle some special IE behavior.
      • wasCreatedByJavascript

        public boolean wasCreatedByJavascript()
        INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
        Returns true if this frame was created by javascript. This is needed to handle some special IE behavior.
        Returns:
        true or false
      • valueModifiedByJavascript

        public void valueModifiedByJavascript()
        INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
        Marks this element as modified (value) by javascript. This is needed to support maxlength/minlength validation.
      • focus

        public final void focus()
        Sets the focus on this element.
        Overrides:
        focus in class DomElement
      • removeFocus

        public final void removeFocus()
        INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
        Gets notified that it has lost the focus.
        Overrides:
        removeFocus in class DomElement
      • getSize

        public java.lang.String getSize()
        Returns the value of the size attribute.
        Returns:
        the value of the size attribute
      • setSize

        public void setSize​(java.lang.String size)
        Sets the size attribute.
        Parameters:
        size - the size attribute
      • setMaxLength

        public void setMaxLength​(int maxLength)
        Sets the maxLength attribute.
        Parameters:
        maxLength - the maxLength attribute
      • setMinLength

        public void setMinLength​(int minLength)
        Sets the minLength attribute.
        Parameters:
        minLength - the minLength attribute
      • getAccept

        public java.lang.String getAccept()
        Returns the value of the accept attribute.
        Returns:
        the value of the accept attribute
      • setAccept

        public void setAccept​(java.lang.String accept)
        Sets the accept attribute.
        Parameters:
        accept - the accept attribute
      • getAutocomplete

        public java.lang.String getAutocomplete()
        Returns the value of the autocomplete attribute.
        Returns:
        the value of the autocomplete attribute
      • setAutocomplete

        public void setAutocomplete​(java.lang.String autocomplete)
        Sets the autocomplete attribute.
        Parameters:
        autocomplete - the autocomplete attribute
      • getPlaceholder

        public java.lang.String getPlaceholder()
        Returns the value of the placeholder attribute.
        Returns:
        the value of the placeholder attribute
      • setPlaceholder

        public void setPlaceholder​(java.lang.String placeholder)
        Sets the placeholder attribute.
        Parameters:
        placeholder - the placeholder attribute
      • getPattern

        public java.lang.String getPattern()
        Returns the value of the pattern attribute.
        Returns:
        the value of the pattern attribute
      • setPattern

        public void setPattern​(java.lang.String pattern)
        Sets the pattern attribute.
        Parameters:
        pattern - the pattern attribute
      • getMin

        public java.lang.String getMin()
        Returns the value of the min attribute.
        Returns:
        the value of the min attribute
      • setMin

        public void setMin​(java.lang.String min)
        Sets the min attribute.
        Parameters:
        min - the min attribute
      • getMax

        public java.lang.String getMax()
        Returns the value of the max attribute.
        Returns:
        the value of the max attribute
      • setMax

        public void setMax​(java.lang.String max)
        Sets the max attribute.
        Parameters:
        max - the max attribute
      • getStep

        public java.lang.String getStep()
        Returns the value of the step attribute.
        Returns:
        the value of the step attribute
      • setStep

        public void setStep​(java.lang.String step)
        Sets the step attribute.
        Parameters:
        step - the step attribute
      • isValid

        public boolean isValid()
        Description copied from class: HtmlElement
        Returns whether this element satisfies all form validation constraints set.
        Overrides:
        isValid in class HtmlElement
        Returns:
        whether this element satisfies all form validation constraints set
      • isRequiredSupported

        protected boolean isRequiredSupported()
        Returns whether this element supports the required constraint.
        Overrides:
        isRequiredSupported in class HtmlElement
        Returns:
        whether this element supports the required constraint
      • isPatternSupported

        protected boolean isPatternSupported()
        Returns if the input element supports pattern validation. Refer to the HTML 5 documentation for details.
        Returns:
        if the input element supports pattern validation
      • isBlankPatternValidated

        protected boolean isBlankPatternValidated()
        Returns:
        if the element executes pattern validation on blank strings
      • isMinMaxLengthSupported

        protected boolean isMinMaxLengthSupported()
        Returns if the input element supports maxlength minlength validation. Refer to the HTML 5 documentation for details.
        Returns:
        if the input element supports pattern validation
      • cloneNode

        public DomNode cloneNode​(boolean deep)
        Specified by:
        cloneNode in interface org.w3c.dom.Node
        Overrides:
        cloneNode in class HtmlElement