1 /* 2 Copyright 2001 by Ralph Hartley 3 This software is licenced under the terms of the 4 Gnu Public Licence 5 */ 6 public class DatumAligner extends FixedAligner { 7 8 public static DatumAligner theone = new DatumAligner(); 9 10 private DatumAligner() {} 11 12 // public ViewTransform getAlignTransform() {return(null);} 13 14 public Object readResolve() throws java.io.ObjectStreamException { 15 // theone.alignees.addAll(alignees); 16 return(theone); 17 } 18 } 19 20