46 public String toString()
48 return "a = " + a +
", b = " + b +
", c = (" + c +
")";
53 public boolean equals(Object o)
59 CompoundObject co = (CompoundObject) o;
60 if (this.a != co.a ||
this.b.compareTo(co.b) != 0)
64 if ((this.c == null && co.c == null) || (this.c != null && co.c != null && this.c.equals(co.c)))
A dummy object used to show serialization.