CSSProperty.java
958 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
42
43
44
45
46
47
48
49
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.aemds.guide.themes;
public class CSSProperty {
private String key;
private String value;
private String valuePrefix;
private String valueSuffix;
public CSSProperty(String pKey, String pValue) {
this.key = pKey;
this.value = pValue;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getValueSuffix() {
return this.valueSuffix;
}
public void setValueSuffix(String valueSuffix) {
this.valueSuffix = valueSuffix;
}
public String getValuePrefix() {
return this.valuePrefix;
}
public void setValuePrefix(String valuePrefix) {
this.valuePrefix = valuePrefix;
}
}