# File temp/validation/validation.rb, line 96
      def matches?( event )
        #puts "#@event_type =? #{event[0]} && #@event_arg =? #{event[1]} "
        return false unless event[0] == @event_type
        case event[0]
        when :start_element
          return true if event[1] == @event_arg
        when :end_element
          return true
        when :has_attribute
          return true if event[1] == @event_arg
        when :end_document
          return true
??
        else
          false
        end
      end