1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
import com.fizzed.rocker.RenderingException;
import com.fizzed.rocker.runtime.DefaultRockerTemplate;
import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader;
import java.io.IOException;
/*
* Auto generated code to render template /fileview.rocker.html
* Do not edit this file. Changes will eventually be overwritten by Rocker parser!
*/
@SuppressWarnings("unused")
public class fileview extends com.fizzed.rocker.runtime.DefaultRockerModel {
// argument @ [1:2]
private String content;
static public com.fizzed.rocker.ContentType getContentType() {
return com.fizzed.rocker.ContentType.HTML;
}
static public String getTemplateName() {
return "fileview.rocker.html";
}
static public String getTemplatePackageName() {
return "";
}
static public String getHeaderHash() {
return "868254209";
}
static public String[] getArgumentNames() {
return new String[]{"content"};
}
static public fileview template(String content) {
return new fileview()
.content(content);
}
public fileview content(String content) {
this.content = content;
return this;
}
public String content() {
return this.content;
}
@Override
protected DefaultRockerTemplate buildTemplate() throws RenderingException {
// optimized for performance (via rocker.optimize flag; no auto reloading)
return new Template(this);
}
static public class Template extends com.fizzed.rocker.runtime.DefaultRockerTemplate {
// <!doctype html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\"\n content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n <title>Fileview</title>\n</head>\n<body>\n<textarea disabled style=\"border: none; background-color: white; width: 100vw; height: 100vh\">\n
static private final byte[] PLAIN_TEXT_0_0;
// \n</textarea>\n</body>\n</html>\n
static private final byte[] PLAIN_TEXT_1_0;
static {
PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(fileview.class.getClassLoader(), fileview.class.getName() + "$PlainText", "UTF-8");
PLAIN_TEXT_0_0 = loader.tryGet("PLAIN_TEXT_0_0");
PLAIN_TEXT_1_0 = loader.tryGet("PLAIN_TEXT_1_0");
}
// argument @ [1:2]
protected final String content;
public Template(fileview model) {
super(model);
__internal.setCharset("UTF-8");
__internal.setContentType(getContentType());
__internal.setTemplateName(getTemplateName());
__internal.setTemplatePackageName(getTemplatePackageName());
this.content = model.content();
}
@Override
protected void __doRender() throws IOException, RenderingException {
// PlainText @ [1:23]
__internal.aboutToExecutePosInTemplate(1, 23);
__internal.writeValue(PLAIN_TEXT_0_0);
// ValueExpression @ [14:5]
__internal.aboutToExecutePosInTemplate(14, 5);
__internal.renderValue(content, false);
// PlainText @ [14:13]
__internal.aboutToExecutePosInTemplate(14, 13);
__internal.writeValue(PLAIN_TEXT_1_0);
}
}
private static class PlainText {
static private final String PLAIN_TEXT_0_0 = "<!doctype html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\"\n content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n <title>Fileview</title>\n</head>\n<body>\n<textarea disabled style=\"border: none; background-color: white; width: 100vw; height: 100vh\">\n ";
static private final String PLAIN_TEXT_1_0 = "\n</textarea>\n</body>\n</html>\n";
}
}
|