public boolean equals(Greeter other)
{
if (this == other) return true;
return name.equals(other.name);
}
public Greeter(String name)Note that instance variables is qualified with this to avoid name clashes with method parameters.
{
this.name = name;
}