Package org.xhtmlrenderer.simple.xhtml
Class XhtmlForm
- java.lang.Object
-
- org.xhtmlrenderer.simple.xhtml.XhtmlForm
-
public class XhtmlForm extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddFormListener(FormListener listener)Iterable<FormControl>controls()FormControlcreateControl(Element e)static FormControlcreateControl(XhtmlForm form, Element e)List<FormControl>getAllControls(String name)FormControlgetControl(String name)Iterator<FormControl>getControls()Deprecated.Use methodcontrols()insteadvoidremoveFormListener(FormListener listener)voidreset()voidsubmit()
-
-
-
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)
-
controls
public Iterable<FormControl> controls()
-
getControls
@Deprecated public Iterator<FormControl> getControls()
Deprecated.Use methodcontrols()instead
-
createControl
public FormControl createControl(Element e)
-
createControl
public static FormControl createControl(XhtmlForm form, Element e)
-
reset
public void reset()
-
submit
public void submit()
-
-