DoRTableRowElement.java 971 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.xfa.Element
 *  com.adobe.xfa.Node
 */
package com.adobe.aemds.guide.addon.dor.elements;

import com.adobe.aemds.guide.addon.dor.elements.DoRPanelElement;
import com.adobe.xfa.Element;
import com.adobe.xfa.Node;
import java.util.Map;
import java.util.Properties;

public class DoRTableRowElement
extends DoRPanelElement {
    public DoRTableRowElement(Element xfaElement) throws Exception {
        super(xfaElement);
        Node rowItem = xfaElement.resolveNode("AF_TABLEITEM_XFO");
        if (rowItem != null) {
            xfaElement.removeChild(rowItem);
        }
        this.xPathExprs.put("jcr:title", null);
        this.xPathExprs.put("jcr:description", null);
        this.xPathExprs.put("assistRole", "assist/@role");
    }

    @Override
    public void applyProperties(Properties properties) throws Exception {
        super.applyProperties(properties);
    }
}