stream.println (oStream + ".write_" + typeName + " (" + name + ");");
else if (type instanceof SequenceEntry)
stream.println (oStream + ".write_" + type.type().name() + " (" + name + ");");
else if (type instanceof ValueBoxEntry)
{
ValueBoxEntry v = (ValueBoxEntry) type;
TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry;
SymtabEntry mType = member.type ();
// if write value to the boxed holder indicated by the name ending with ".value"
if (mType instanceof PrimitiveEntry && name.endsWith (".value"))
stream.println (Util.helperName (type, true) + ".write (" + oStream + ", " // <d61056>