1 16 17 18 package org.apache.commons.betwixt.introspection; 19 20 import java.util.HashMap ; 21 22 26 public class BeanWithConcreteMap { 27 28 private HashMap someMap = new HashMap (); 29 30 public HashMap getSomeThingies() { 31 return someMap; 32 } 33 34 public void addSomeThingy(String whatever, String thing) { 35 someMap.put(whatever, thing); 36 } 37 } 38 39 | Popular Tags |