// Note All the jade.util.leap.ArrayList structures will only print their type unless a
// toString() method were added to them.
if (argProp.getBooleanProperty("dumpProfile", false)) {
ArrayList aList = new ArrayList();
System.out.println("---------- Jade Boot profile property values ----------");
for (Enumeration e = profileProp.sortedKeys(); e.hasMoreElements(); ) {
String key = (String) e.nextElement();
Object o = profileProp.get(key);
if (o.getClass().isAssignableFrom(aList.getClass())) {
System.out.print(key + "=");
ArrayList al = (ArrayList)o;