# File lib/tapkit/control/qualifier.rb, line 509
                def ==( other )
                        bool = false
                        if AndQualifier === other then
                                if @qualifiers == other.qualifiers then
                                        bool = true
                                end
                        end

                        bool
                end