Modifier.java
1.8 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.appmon.xml;
import com.adobe.appmon.xml.Keyname;
import com.adobe.appmon.xml.Keys;
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.XmlElements;
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={"modifierAndKeysAndKeyname"})
@XmlRootElement(name="modifier")
public class Modifier
implements Serializable {
@XmlElements(value={@XmlElement(name="keyname", type=Keyname.class), @XmlElement(name="keys", type=Keys.class), @XmlElement(name="modifier", type=Modifier.class)})
protected List<Object> modifierAndKeysAndKeyname;
@XmlAttribute(required=1)
protected String value;
public List<Object> getModifierAndKeysAndKeyname() {
if (this.modifierAndKeysAndKeyname == null) {
this.modifierAndKeysAndKeyname = new ArrayList<Object>();
}
return this.modifierAndKeysAndKeyname;
}
public boolean isSetModifierAndKeysAndKeyname() {
return this.modifierAndKeysAndKeyname != null && !this.modifierAndKeysAndKeyname.isEmpty();
}
public void unsetModifierAndKeysAndKeyname() {
this.modifierAndKeysAndKeyname = null;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public boolean isSetValue() {
return this.value != null;
}
}