# File temp/validation/validation.rb, line 74
      def initialize( count = nil )
        @states = []
        if count
          @@count = count
        else
          if defined? @@count
            @@count += 1
          else
            @@count = 0
          end
        end
        @count = @@count
      end