if (o instanceof ISOMsg)
{
ByteArrayOutputStream str = new ByteArrayOutputStream();
PrintStream ps = new PrintStream (str);
ISOMsg msg = (ISOMsg) o;
msg.dump (ps, "");
return "\n" + str.toString();
}
else
return "ERROR: ISOMsgRenderer can only render ISOMsg objects";