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

com.citytechinc.cq.component.dialog.richtexteditor.KeysRtePluginParameters Maven / Gradle / Ivy

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

public class KeysRtePluginParameters extends RtePluginParameters {

    public static final String KEYS = "keys";

    private String tabSize;

    public String getTabSize() {
        return tabSize;
    }

    public void setTabSize(String tabSize) {
        this.tabSize = tabSize;
    }

    @Override
    public String getFieldName() {
        return KEYS;
    }

    @Override
    public void setFieldName(String fieldName) {
        throw new UnsupportedOperationException("Field Name is static for KeysRtePlugin");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy