1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of a Object witch contains a list of items. 5 */ 6 public interface GB_ItemArrayOwner 7 { 8 Object[] getItems(); 9 }