CSSProperty.java 958 Bytes
/*
 * 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;
    }
}