package visitor; /** Element interface — accepts a visitor */ public interface Shape { void accept(ShapeVisitor visitor); String getName(); }