# File lib/rgen/template_language/template_container.rb, line 26
      def load
                File.open(@filename,"rb") do |f|
          begin
                     @@metamodels = @metamodels
                   fileContent = f.read
                 _detectNewLinePattern(fileContent)
                        ERB.new(fileContent,nil,nil,'@output').result(binding)
          rescue Exception => e
            processAndRaise(e)
          end
                end
      end