1 5 package mc.formgenerator.ggf; 6 7 10 import java.util.Map ; 11 import java.util.HashMap ; 12 13 17 public class WebContextGGF{ 18 19 public static final String REQUEST_PARAMETERS = "chiba.parameters"; 21 private Map properties=null; 22 private GGF ggf = null; 23 24 public WebContextGGF(GGF ggf) { 25 this.ggf = ggf; 26 this.properties = new HashMap (); 27 } 28 29 34 public void setProperty(String key, Object value) { 35 this.properties.put(key,value); 36 } 37 38 43 public Object getProperty(String key) { 44 return this.properties.get(key); 45 } 46 47 51 public Map getProperties() { 52 return this.properties; 53 } 54 55 65 84 } | Popular Tags |