01: package fr.aliacom.common.ui;
02:
03: import fr.aliacom.form.common.IFormComponent;
04:
05: /**
06: * Toolkit implementors might implement this class to provide card lazy loading
07: * in card panels.
08: *
09: * @author tom
10: *
11: * (C) 2001, 2003 Thomas Cataldo
12: */
13: public interface ICard extends IFormComponent {
14:
15: boolean isLoaded();
16:
17: void load();
18:
19: IFormComponent getComponent();
20:
21: String getTitle();
22:
23: void setTitle(String title);
24:
25: }
|