1 /* 2 Copyright 2000 by Ralph Hartley 3 This software is licenced under the terms of the 4 Gnu Public Licence 5 */ 6 7 public interface Element { 8 public String getName(); 9 public void setName(String name); 10 // public void recursiveDelete(Element old){} 11 } 12 13 14