public abstract class _Shape { private String name; public void setName(String name) { this.name = name; } public String getName(){ return name; } }