# File automaten.rb, line 190
        def folgeZustand?(zustand,symbol)
                if ((zustand === @zustand) and (@symbol == symbol)) then
                        tmp = @folge.copy
                        return tmp
                else 
                        return nil
                end
        end