1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of a Object witch contains a list of items. 5 */ 6 public interface GB_Array 7 extends 8 GB_ItemArrayOwner 9 { 10 void add( 11 Object a_item); 12 13 void remove( 14 Object a_item); 15 16 void addAll( 17 Object[] a_items); 18 }