public FreeMarkerOnlineView formResult()

in src/main/java/org/apache/freemarker/onlinetester/resources/WebPageResource.java [47:63]


    public FreeMarkerOnlineView formResult(
            @FormParam("template") String template,
            @FormParam("dataModel") String dataModel,
            @FormParam("outputFormat") String outputFormat,
            @FormParam("locale") String locale,
            @FormParam("timeZone") String timeZone,
            @FormParam("tagSyntax") String tagSyntax,
            @FormParam("interpolationSyntax") String interpolationSyntax) {
        FreeMarkerOnlineView view = new FreeMarkerOnlineView();
        view.setTemplate(template);
        view.setDataModel(dataModel);
        view.setOutputFormat(outputFormat);
        view.setLocale(locale);
        view.setTimeZone(timeZone);
        view.setExecute(true);
        return view;
    }