Package cx.ath.matthew.cgi
Class HTMLForm
- java.lang.Object
-
- cx.ath.matthew.cgi.HTMLForm
-
public class HTMLForm extends java.lang.ObjectClass to manage drawing HTML forms
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddField(Field field)Add a field to be displayed in the form.voiddisplay(CGI cgi)Shows the form.voidsetGET(boolean enable)Set GET method rather than POST
-
-
-
Constructor Detail
-
HTMLForm
public HTMLForm(java.lang.String target)
- Parameters:
target- The module to submit to
-
HTMLForm
public HTMLForm(java.lang.String target, java.lang.String submitlabel)- Parameters:
target- The module to submit tosubmitlabel- The string to display on the submit button
-
HTMLForm
public HTMLForm(java.lang.String target, java.lang.String submitlabel, java.lang.String tableclass)- Parameters:
target- The module to submit tosubmitlabel- The string to display on the submit buttontableclass- The class= parameter for the generated table
-
-
Method Detail
-
addField
public void addField(Field field)
Add a field to be displayed in the form.- Parameters:
field- A Field subclass.
-
setGET
public void setGET(boolean enable)
Set GET method rather than POST- Parameters:
enable- Enable/Disable GET
-
display
public void display(CGI cgi)
Shows the form.- Parameters:
cgi- The CGI instance that is handling output
-
-