4 public abstract class Field implements Cloneable
7 String offset =
"0 -1 0";
9 public Object clone() {
14 }
catch (CloneNotSupportedException ex) {
15 throw new InternalError();
23 public final void __updateRead() {
24 if (__binding != null)
25 __binding.updateRead(
this);
27 protected final void __updateWrite() {
28 if (__binding != null)
29 __binding.updateWrite(
this);
32 public abstract void __fromPerl(BufferedReader in)
throws IOException;
33 public abstract void __toPerl(PrintWriter out)
throws IOException;
35 public void setOffset(String offs) { this.offset = offs; }
36 public String getOffset() {
return this.offset; }