Package com.openhtmltopdf.simple.xhtml
Class XhtmlForm
- java.lang.Object
-
- com.openhtmltopdf.simple.xhtml.XhtmlForm
-
public class XhtmlForm extends Object
-
-
Method Summary
Modifier and Type Method Description voidaddFormListener(FormListener listener)static FormControlcreateControl(XhtmlForm form, Element e)FormControlcreateControl(Element e)List<FormControl>getAllControls(String name)FormControlgetControl(String name)Iterator<FormControl>getControls()voidremoveFormListener(FormListener listener)voidreset()voidsubmit()
-
-
-
Field Detail
-
_action
protected String _action
-
_method
protected String _method
-
_controls
protected List<FormControl> _controls
-
-
Method Detail
-
addFormListener
public void addFormListener(FormListener listener)
-
removeFormListener
public void removeFormListener(FormListener listener)
-
getControl
public FormControl getControl(String name)
-
getAllControls
public List<FormControl> getAllControls(String name)
-
getControls
public Iterator<FormControl> getControls()
-
createControl
public FormControl createControl(Element e)
-
createControl
public static FormControl createControl(XhtmlForm form, Element e)
-
reset
public void reset()
-
submit
public void submit()
-
-