All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.citytechinc.cq.component.dialog.tabpanel.TabPanelParameters Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component.dialog.tabpanel;

import com.citytechinc.cq.component.dialog.DefaultDialogElementParameters;
import com.citytechinc.cq.component.dialog.DialogElement;
import com.citytechinc.cq.component.xml.XmlElement;
import org.codehaus.plexus.util.StringUtils;

import java.util.ArrayList;
import java.util.List;

public class TabPanelParameters extends DefaultDialogElementParameters {

    private static final String DEFAULT_FIELD_NAME = "tabs";

    private static final String PRIMARY_TYPE = "cq:TabPanel";

    @Override
    public void setPrimaryType(String primaryType) {
        throw new UnsupportedOperationException("PrimaryType is Static for TabPanel");
    }

    @Override
    public String getPrimaryType() {
        return PRIMARY_TYPE;
    }

    @Override
    public String getFieldName() {
        if (StringUtils.isEmpty(fieldName)) {
            return DEFAULT_FIELD_NAME;
        }
        return fieldName;
    }

    @Override
    public List getContainedElements() {
        if (containedElements == null) {
            containedElements = new ArrayList();
        }
        return containedElements;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy