01: package fr.aliacom.common.ui;
02:
03: import fr.aliacom.form.common.IFormComponent;
04:
05: /**
06: * @author tom
07: *
08: * (C) 2001, 2002 Thomas Cataldo
09: */
10: public interface IText extends IFormComponent {
11:
12: void setText(String text);
13:
14: String getText();
15:
16: void setEditable(boolean editable);
17:
18: void setEnabled(boolean enabled);
19:
20: /* Should this be in IFormComponent ? */
21: void focus();
22:
23: }
|