}
public Group setKey(String key, boolean create)
throws Exception
{
Group g = null;
String inputKey = TurbineIntake.getGroupKey(groupName) + key;
if ( groups.containsKey(inputKey))
{
g = (Group)groups.get(inputKey);
}
else if (create)
{
g = TurbineIntake.getGroup(groupName);
groups.put(inputKey, g);
g.init(key, data);
}
return g;
}