01: package fr.aliacom.common.ui;
02:
03: import fr.aliacom.commands.Command;
04:
05: /**
06: * @author tom
07: *
08: * (C) 2001, 2002 Thomas Cataldo
09: */
10: public interface ITextField extends IText {
11:
12: /**
13: * Define the command executed on carriage return
14: * @param c
15: */
16: public void setOnCrAction(Command c);
17:
18: /**
19: * Define the command executed on carriage return
20: * @param c
21: */
22: public void setOnUpAction(Command c);
23:
24: /**
25: * Define the command executed on carriage return
26: * @param c
27: */
28: public void setOnDownAction(Command c);
29: }
|