@Override
 protected void readInternal(ObjectDataInput in) throws IOException {
   super.readInternal(in);
   simpleName = in.readUTF();
 }
 @Override
 protected void writeInternal(ObjectDataOutput out) throws IOException {
   super.writeInternal(out);
   out.writeUTF(simpleName);
 }