GuideButton.java
1.04 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
/*
* 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");
}
}