01: /* Inputable.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: May 31, 2007 5:23:48 PM, Created by henrichen
10: }}IS_NOTE
11:
12: Copyright (C) 2007 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: This program is distributed under GPL Version 2.0 in the hope that
16: it will be useful, but WITHOUT ANY WARRANTY.
17: }}IS_RIGHT
18: */
19: package org.zkoss.zkmob;
20:
21: /**
22: * @author henrichen
23: *
24: */
25: public interface Inputable {
26: /**
27: * Check whether send onChange event.
28: * @return null means don't send; true means send asap; false means wait until kick to send
29: */
30: public Boolean getOnChange();
31:
32: /**
33: * Check whether send onChanging event.
34: * @return null means don't send; true means send asap; false means wait until kick to send
35: */
36: public Boolean getOnChanging();
37:
38: /**
39: * Get input text.
40: * @return input text.
41: */
42: public String getString();
43: }
|