SubmitFormInput class

The SubmitFormInput class represents a submit button input type in an HTML form.

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

    SubmitFormInput submit = new SubmitFormInput();
    submit.setValue("Send");
    System.out.println(submit.getTag());

The code example above generates the following output:

    <input type="submit" value="Send" />