A good artice.

I have a question baout the override equals in the preson class.

public boolean equals(Object obj)
{
...
return age == person.getAge() && fullName.equals (person.getFull Name())
&& title.equals(pe rson.getTitle() );
}

If fullName is null the Equals override would throw an exception. What is the best way to do this:-
...