AutoComplete.java
1.07 KB
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
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.searchpromote.xml.form;
public class AutoComplete {
private Boolean enabled;
private String formContent;
private String javaScript;
private String css;
public AutoComplete(Boolean enabled, String formContent, String javaScript, String css) {
this.enabled = enabled;
this.formContent = formContent;
this.javaScript = javaScript;
this.css = css;
}
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;
}
public String getCss() {
return this.css;
}
public void setCss(String css) {
this.css = css;
}
}