nextapp.echoservlet
Interface ClientInputProducer

All Known Subinterfaces:
ControllerFieldInitialState
All Known Implementing Classes:
AbstractDateFieldUI, AsyncComponentUI, BalloonHelpUI, CheckBoxUI, ClientDatePickerUI, ComboBoxUI, CustomRenderingComponentUI, DateFieldUI, DatePickerUI, DialogPanelUI, DropDownBoxUI, DynaHtmlEditorUI, EmbeddedPaneUI, HidingSlidingPanelUI, HorizontalPanelUI, HtmlTemplatePanelUI, JspTemplatePanelUI, ListBoxUI, NativeCheckBoxUI, NewsTickerUI, NumberFormatFieldUI, PickListUI, PopUpUI, RadioButtonUI, RecallComboBoxUI, RichTextAreaUI, ScrollableBoxUI, ScrollablePanel2UI, ScrollablePanelUI, SelectableTableUI, SelectFieldUI, SortableTableUI, SpinFieldUI, TabbedPaneUI, TaskBarUI, TextAreaUI, TextComponentUI, TextFieldUI, TextFieldUI, TimeFieldUI, TitleBarUI, TreeUI, WizardPaneUI

public interface ClientInputProducer

An interface used by ComponentPeers to receive input from the client browser. Implementing this interface will automatically generate a hidden input field on the client in the form rendered by the Controller.


Method Summary
 void clientInput(java.lang.String input)
          Called when a client sends an input string through an input field.
 Id getId()
          Returns the Id of the input producing ComponentPeer.
 

Method Detail

clientInput

void clientInput(java.lang.String input)
Called when a client sends an input string through an input field.

Parameters:
input - The data in the hidden input field in the controller form as last known.

getId

Id getId()
Returns the Id of the input producing ComponentPeer.

Returns:
The Id of the input producing ComponentPeer.