ResetFormInput class

The ResetFormInput class represents a reset button input type in an HTML form.

The following code example shows you how to create a ResetFormInput object:

    ResetFormInput reset = new ResetFormInput();
    reset.setValue("Reset");
    System.out.println(reset.getTag());

The above code example generates the following HTML tag:

    <input type="reset" value="Reset" />