public void writeExternal(ObjectOutput out) throws IOException {
   super.writeExternal(out);
   out.writeLong(startMinDev);
   out.writeLong(startMaxDev);
   out.writeLong(endMinDev);
   out.writeLong(endMaxDev);
 }
 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
   super.readExternal(in);
   startMinDev = in.readLong();
   startMaxDev = in.readLong();
   endMinDev = in.readLong();
   endMaxDev = in.readLong();
 }
 public void writeExternal(ObjectOutput out) throws IOException {
   super.writeExternal(out);
   out.writeLong(endDev);
   out.writeObject(paramText);
 }
 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
   super.readExternal(in);
   endDev = in.readLong();
   paramText = (String) in.readObject();
 }