GuideButton.java 1.04 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.sling.api.resource.ValueMap
 */
package com.adobe.aemds.guide.common;

import com.adobe.aemds.guide.common.GuideField;
import org.apache.sling.api.resource.ValueMap;

public class GuideButton
extends GuideField {
    private final String defaultButtonType = "button-default";
    private final String defaultButtonSize = "button-medium";
    private final String defaultType = "button";

    public String getGuideFieldType() {
        return "guideButton";
    }

    public boolean getHideTitle() {
        return false;
    }

    public String getButtonType() {
        this.getClass();
        return (String)this.resourceProps.get("buttonType", (Object)"button-default");
    }

    public String getButtonSize() {
        this.getClass();
        return (String)this.resourceProps.get("buttonSize", (Object)"button-medium");
    }

    public String getType() {
        this.getClass();
        return (String)this.resourceProps.get("type", (Object)"button");
    }
}