1 /* 2 Copyright 2003 by Ralph Hartley 3 This software is licenced under the terms of the 4 Gnu Public Licence 5 */ 6 7 import javax.swing.*; 8 import java.awt.event.*; 9 import java.awt.*; 10 import java.util.*; 11 12 public class PrefArrow extends PrefDef { 13 14 private static final long serialVersionUID = Version.getSUID(); 15 16 public PrefArrow() { 17 name = name+"Arrows"; 18 defname = "arrow"; 19 } 20 21 public PrefArrow(Carto target) { 22 super(target); 23 name = "Arrows"; //don't use file name - it could change. 24 defname = "arrow"; 25 } 26 27 public Class getDefClass() { 28 return(Arrow.class); 29 } 30 31 /* 32 private void readObject(java.io.ObjectInputStream stream) 33 throws java.io.IOException,java.lang.ClassNotFoundException { 34 stream.defaultReadObject(); 35 } 36 */ 37 } 38