public boolean equals(Greeter other) { if (this == other) return true; return name.equals(other.name); }
public Greeter(String name) { this.name = name; }