Package org.xhtmlrenderer.simple.extend
Interface FormSubmissionListener
-
- All Known Implementing Classes:
BasicPanel
,DefaultFormSubmissionListener
,ScalableXHTMLPanel
,XHTMLPanel
public interface FormSubmissionListener
FormSubmissionListener is used to receive callbacks when an XhtmlForm has its submit action called. The entire query string is given over to thesubmit(String)
method, which can then be submitted back to the panel for loading.- Author:
- Christophe Marchand
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
submit(java.lang.String query)
Called by XhtmlForm when a form is submitted.
-