String pkg = appData.getBasePackage();
List glist = appData.getGroups();
for ( int i=glist.size()-1; i>=0; i-- )
{
XmlGroup g = (XmlGroup)glist.get(i);
String groupName = g.getName();
groupNames[i] = groupName;
groupKeyMap.put(groupName, g.getKey());
groupNameMap.put(g.getKey(), groupName);
List classNames = g.getMapToObjects();
Iterator iter2 = classNames.iterator();
while (iter2.hasNext())
{
String className = (String)iter2.next();
if ( !getterMap.containsKey(className) )