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

com.citytechinc.cq.component.touchuidialog.layout.LayoutElementParameters Maven / Gradle / Ivy

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

import com.citytechinc.cq.component.touchuidialog.DefaultTouchUIDialogElementParameters;

public class LayoutElementParameters extends DefaultTouchUIDialogElementParameters {

    @Override
    public String getFieldName() {
        return AbstractLayoutElement.ELEMENT_NAME;
    }

    @Override
    public void setFieldName(String fieldName) {
        throw new UnsupportedOperationException("field name is Static for Layout Element");
    }

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

    @Override
    public void setPrimaryType(String fieldName) {
        throw new UnsupportedOperationException("primary type is Static for Layout Element");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy