GuideTextDrawElement.java 774 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.xfa.Element
 *  org.apache.sling.commons.json.JSONObject
 */
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.DoRTextDrawElement;
import com.adobe.aemds.guide.addon.dor.elements.GuideElement;
import com.adobe.xfa.Element;
import org.apache.sling.commons.json.JSONObject;

public class GuideTextDrawElement
extends GuideElement {
    public GuideTextDrawElement(JSONObject jsonObject) {
        super(jsonObject);
    }

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