1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of object that accepts multi values (type Map). 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_ValuesMapOwner 9 { 10 /*** 11 * Get the value with the name <tt>a_name</tt>. 12 */ 13 Object getValueItem( 14 String a_name); 15 16 /*** 17 * Returns the count of the values. 18 */ 19 int getValueItemCount(); 20 21 }