Dialogs.java
1.92 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
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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.appmon.xml;
import com.adobe.appmon.xml.Window;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="", propOrder={"window"})
@XmlRootElement(name="dialogs")
public class Dialogs
implements Serializable {
@XmlElement(required=1)
protected List<Window> window;
@XmlAttribute(required=1)
protected String app;
@XmlAttribute(required=1)
protected String locale;
@XmlAttribute(required=1)
protected String version;
public List<Window> getWindow() {
if (this.window == null) {
this.window = new ArrayList<Window>();
}
return this.window;
}
public boolean isSetWindow() {
return this.window != null && !this.window.isEmpty();
}
public void unsetWindow() {
this.window = null;
}
public String getApp() {
return this.app;
}
public void setApp(String value) {
this.app = value;
}
public boolean isSetApp() {
return this.app != null;
}
public String getLocale() {
return this.locale;
}
public void setLocale(String value) {
this.locale = value;
}
public boolean isSetLocale() {
return this.locale != null;
}
public String getVersion() {
return this.version;
}
public void setVersion(String value) {
this.version = value;
}
public boolean isSetVersion() {
return this.version != null;
}
}