01: package fr.aliacom.common.ui.table;
02:
03: /**
04: * This interface provides a toolkit independent way
05: * to set an icon and/or a text in a table cell.
06: *
07: * TODO: figure out a way to update the display when a "constrained" property changes
08: *
09: * @author tom
10: *
11: * (C) 2001, 2003 Thomas Cataldo
12: */
13: public interface ILabelProvider {
14:
15: String getText(Object value, Object javaBean);
16:
17: String getIconName(Object value, Object javaBean);
18:
19: }
|