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_ItemSet
14 extends
15 GB_Item,
16 GB_ValueOwnerSet,
17 GB_LabelIconOwnerSet
18 {
19 }