if ( ( aObject == null ) || !( aObject instanceof Attribute ) )
{
return false;
}
Attribute other = ( Attribute )aObject;
if ( !this.name.equals( other.getName() ) )
{
return false;
}
if ( !this.value.equals( other.getValue() ) )
{
return false;
}
return true;