# File lib/cassiopee.rb, line 602
        def next
                if(@curmatch<@matches.length)
                        @curmatch = @curmatch + 1
                        return @matches[@curmatch-1]
                else
                        @curmatch = 0
                        return nil
                end
        end