# File lib/cgikit.rb, line 5021
        def ==( other )
                bool = false
                if CKKeyValueQualifier === other then
                        if (@key == other.key) and (@symbol == other.symbol) and \
                                (@value == other.value) then
                                bool = true
                        end
                end

                bool
        end