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

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

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

import com.citytechinc.cq.component.dialog.AbstractDialogElement;

public class RteStyle extends AbstractDialogElement {

	public static final String PRIMARY_TYPE = "nt:unstructured";

	private final String cssName;
	private final String text;

	public RteStyle(RteStyleParameters parameters) {
		super(parameters);

		this.cssName = parameters.getCssName();
		this.text = parameters.getText();
	}

	public String getCssName() {
		return cssName;
	}

	public String getText() {
		return text;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy