// Foreign Key fields retrieved here map to FieldDescriptors of the table in the collection
System.err.println(toString());
java.util.Iterator it;
try
{
it = new ArrayIterator(collectionDescriptor.getFksToThisClass());
while (it.hasNext())
newChildren.add(new javax.swing.tree.DefaultMutableTreeNode("FksToThisClass: " + it.next().toString()));
it = new ArrayIterator(collectionDescriptor.getFksToItemClass());
while (it.hasNext())
newChildren.add(new javax.swing.tree.DefaultMutableTreeNode("FksToItemClass: " + it.next().toString()));
}
catch (NullPointerException npe)