456789101112
import steal.visitor.Printer; public abstract class ElementImpl implements Element { public String toString() { Printer p=new Printer(); this.accept(p); return p.toString(); }