1 package com.loribel.commons.abstraction;
2
3 import com.loribel.commons.util.*;
4
5 /***
6 * Interface to reprensent an item.
7 * This interface can be used in List, ComboBox, ... or all other usage..
8 *
9 * @see GB_ItemTools
10 *
11 * @author Gregory Borelli
12 */
13 public interface GB_Item
14 extends
15 GB_ValueOwner,
16 GB_LabelIconOwner
17 {
18 }