org.htmlunit.html.SubmittableElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlunit Show documentation
Show all versions of htmlunit Show documentation
A headless browser intended for use in testing web-based applications.
The newest version!
/*
* Copyright (c) 2002-2024 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.html;
import org.htmlunit.util.NameValuePair;
/**
* An element that can have it's values sent to the server during a form submit.
*
* @author Mike Bowler
* @author Daniel Gredler
*/
public interface SubmittableElement {
/**
* Returns an array of {@link NameValuePair}s 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.
*
* @return the values that will be sent back to the server whenever this element's
* containing form is submitted
*/
NameValuePair[] getSubmitNameValuePairs();
/**
* 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).
*/
void reset();
/**
* Sets the default value to use when this element gets reset, if applicable.
* @param defaultValue the default value to use when this element gets reset, if applicable
*/
void setDefaultValue(String defaultValue);
/**
* Returns the default value to use when this element gets reset, if applicable.
* @return the default value to use when this element gets reset, if applicable
*/
String getDefaultValue();
/**
* Sets the default checked state to use when this element gets reset, if applicable.
* The default implementation is empty; only checkboxes and radio buttons
* really care what the default checked value is.
* @see SubmittableElement#setDefaultChecked(boolean)
* @see HtmlRadioButtonInput#setDefaultChecked(boolean)
* @see HtmlCheckBoxInput#setDefaultChecked(boolean)
*
* @param defaultChecked the default checked state to use when this element gets reset, if applicable
*/
void setDefaultChecked(boolean defaultChecked);
/**
* Returns the default checked state to use when this element gets reset, if applicable.
* @return the default checked state to use when this element gets reset, if applicable
*/
boolean isDefaultChecked();
}