// Pack a HashMap with all of the record entries from
// the original record and all of the updating ports.
HashMap outputMap = new HashMap();
RecordToken record = (RecordToken) input.get(0);
Set recordLabels = record.labelSet();
for (Iterator i = recordLabels.iterator(); i.hasNext();) {
String name = (String) i.next();
Token value = record.get(name);
outputMap.put(name, value);