KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > pooka > gui > TableCellIcon


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

10     public Component JavaDoc getIcon();
11 }
12
Popular Tags