# File lib/tapkit/control/qualifier.rb, line 395
                def ==( other )
                        bool = false
                        if KeyValueQualifier === other then
                                if (@key == other.key) and (@symbol == other.symbol) and \
                                        (@value == other.value) then
                                        bool = true
                                end
                        end

                        bool
                end