Friday, February 9, 2007

looping through context object

Set z = context.entrySet();
Iterator it = z.iterator();
while (it.hasNext()) {
Map.Entry pairs = (Map.Entry)it.next();
Debug.log(pairs.getKey() + " = " + pairs.getValue());
}