21222324252627282930
// ** METHODS ** // // ************* // public void add(String key, String value) throws ConfigTagAlreadyExistsException{ if(table.get(key)!=null) throw new ConfigTagAlreadyExistsException(); tagNames.add(key); table.put(key,value); }