Tnt.java
888 Bytes
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
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.searchpromote.xml.form;
public class Tnt {
private Boolean enabled;
private String formContent;
private String javaScript;
public Tnt(Boolean enabled, String formContent, String javaScript) {
this.enabled = enabled;
this.formContent = formContent;
this.javaScript = javaScript;
}
public Boolean getEnabled() {
return this.enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public String getFormContent() {
return this.formContent;
}
public void setFormContent(String formContent) {
this.formContent = formContent;
}
public String getJavaScript() {
return this.javaScript;
}
public void setJavaScript(String javaScript) {
this.javaScript = javaScript;
}
}