public void write(WriteContext context, Object obj) { if (Deploy.debug) { Debug4.writeBegin(context, Const4.YAPBYTE); } context.writeByte(((Byte) obj).byteValue()); if (Deploy.debug) { Debug4.writeEnd(context); } }
public Object read(ReadContext context) { if (Deploy.debug) { Debug4.readBegin(context, Const4.YAPBYTE); } byte byteValue = context.readByte(); if (Deploy.debug) { Debug4.readEnd(context); } return new Byte(byteValue); }