GuideImageChoiceElement.java 993 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.xfa.Element
 *  org.apache.sling.commons.json.JSONObject
 *  org.slf4j.Logger
 *  org.slf4j.LoggerFactory
 */
package com.adobe.aemds.guide.addon.dor.elements;

import com.adobe.aemds.guide.addon.dor.elements.DoRElement;
import com.adobe.aemds.guide.addon.dor.elements.DoRImageChoiceElement;
import com.adobe.aemds.guide.addon.dor.elements.GuideCheckBoxElement;
import com.adobe.xfa.Element;
import org.apache.sling.commons.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class GuideImageChoiceElement
extends GuideCheckBoxElement {
    private Logger logger = LoggerFactory.getLogger(GuideImageChoiceElement.class);

    public GuideImageChoiceElement(JSONObject jsonObject) {
        super(jsonObject);
    }

    @Override
    public DoRElement createDoRElement(Element xfaElement) throws Exception {
        return new DoRImageChoiceElement(xfaElement);
    }
}