Package template

Source Code of template.text_002dplain_jetx

package template;

import jetbrick.template.JetContext;
import jetbrick.template.runtime.*;

@SuppressWarnings({ "all", "warnings", "unchecked", "unused", "cast" })
public final class text_002dplain_jetx extends JetPage {

    @Override
    public void render(final JetPageContext $ctx) throws Throwable {
        final JetContext context = $ctx.getContext();
        final JetWriter $out = $ctx.getWriter();
        $out.print($txt_1, $txt_1_bytes);
        $out.flush();
    }

    @Override
    public String getName() {
        return "/template/text-plain.jetx";
    }

    public static final String $ENC = "utf-8";
    private static final String $txt_1 = "1234567890";
    private static final byte[] $txt_1_bytes = JetUtils.asBytes($txt_1, $ENC);
}
TOP

Related Classes of template.text_002dplain_jetx

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.