//Create group names on first word (before " ") of target name
String groupName = t.getID().split(" ")[0]; //$NON-NLS-1$
if (targetGroups.containsKey(groupName)) {
TargetGroup tg = targetGroups.get(groupName);
tg.addMember(t);
}
else {
TargetGroup tg = new TargetGroup(t.getID());
tg.addMember(t);
targetGroups.put(groupName,tg);