1 package com.loribel.commons.abstraction; 2 3 import java.util.*; 4 5 /*** 6 * Abstraction of a Object witch contains a list of items. 7 */ 8 public interface GB_ItemsOwner 9 { 10 List getItems(); 11 }