= private = protected
==( other )
Returns true if other is an Attribute and has the same name and value, false otherwise.
# File lib/rexml/attribute.rb, line 96 def ==( other ) other.kind_of?(Attribute) and other.name==name and other.value==value end