00001
00002
00003
00004
00005
00006
00007 package edu.tum.cs.util.datastruct;
00008
00009 import java.util.HashMap;
00010
00011 public class ParameterMap {
00012 protected HashMap<String,Object> map = new HashMap<String,Object>();
00013
00014 public void putBoolean(String key, boolean value) {
00015 map.put(key, value);
00016 }
00017
00018 public boolean getBoolean(String key) {
00019 return (Boolean)map.get(key);
00020 }
00021 }