// testMode = "CopyModel";
// testMode = "ItemTypeRegistry";
// testMode = "ActionItems";
// testMode = "Models";
Dumper dumper = new Dumper();
if (testMode.equals("Children"))
{
// Get the process to execute
Model model = ModelConnector.getInstance().getModelByQualifier(ModelQualifier.constructModelQualifier("AddressBookDemo"));
List l = new ArrayList();
l.add(model);
showObjectList(l);
}
if (testMode.equals("ObjectDescriptor"))
{
try
{
ObjectDescriptor od = ObjectDescriptorMgr.getInstance().getDescriptor(ProcessItem.class, ObjectDescriptorMgr.ODM_THROW_ERROR);
dumper.dump(od);
}
catch (XMLDriverException e)
{
ExceptionUtil.printTrace(e);
System.exit(3);