Exemplo n.º 1
0
 private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException {
   in.defaultReadObject();
   stroke = PUtil.readStroke(in);
 }
Exemplo n.º 2
0
 private void writeObject(final ObjectOutputStream out) throws IOException {
   out.defaultWriteObject();
   PUtil.writeStroke(stroke, out);
 }