01: package fr.aliacom.common.ui;
02:
03: import fr.aliacom.form.common.IFormComponent;
04:
05: /**
06: * <button pythonAction="test.py" icon="Ok">Ok</button>
07: *
08: * @author tom
09: *
10: * (C) 2001, 2002 Thomas Cataldo
11: */
12: public interface IButton extends IFormComponent {
13:
14: public void setText(String text);
15:
16: }
|