Пример #1
0
 /** Reads the arrow tip from a StorableInput. */
 public void read(StorableInput dr) throws IOException {
   super.read(dr);
   fLocator = (Locator) dr.readStorable();
 }
Пример #2
0
 /** Stores the arrow tip to a StorableOutput. */
 public void write(StorableOutput dw) {
   super.write(dw);
   dw.writeStorable(fLocator);
 }