Beispiel #1
0
 /**
  * Internal IDL-generated serialisation helper. Used by {@link ObjectInputStream} and {@link
  * ObjectOutputStream} only.
  */
 public void readObject(ObjectInputStream in)
     throws java.io.IOException, ClassNotFoundException, InstantiationException {
   super.readObject(in);
   in.readObjectStart();
   item = (equip.data.ItemData) in.readObject();
   in.readObjectEnd();
 }
Beispiel #2
0
 /**
  * Internal IDL-generated serialisation helper. Used by {@link equip.runtime.ObjectInputStream}
  * and {@link equip.runtime.ObjectOutputStream} only.
  */
 public void writeObject(ObjectOutputStream out) throws java.io.IOException {
   super.writeObject(out);
   out.writeObjectStart();
   out.writeObject(item);
   out.writeObjectEnd();
 }