01: package fr.aliacom.common.ui.table;
02:
03: import fr.aliacom.form.common.IFormComponent;
04:
05: /**
06: * @author tom
07: *
08: * (C) 2001, 2003 Thomas Cataldo
09: */
10: public interface ICellEditor extends IFormComponent, Cloneable {
11:
12: public Object clone();
13:
14: public void addCellEditorListener(ICellEditorListener icel);
15:
16: public void removeCellEditorListener(ICellEditorListener icel);
17:
18: }
|