1 package net.suberic.pooka.gui; 2 import java.awt.Component; 3 4 public interface TableCellIcon extends Comparable { 5 6 /** 7 * This method should return the appropriate component depending on the 8 * values of the particular TableCellIcon. 9 */ 10 public Component getIcon(); 11 } 12