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

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

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

public class UndoRtePlugin extends RtePlugin {

	public static final String UNDO = "undo";

	private final int maxUndoSteps;

	public UndoRtePlugin(UndoRtePluginParameters parameters) {

		super(parameters);

		this.maxUndoSteps = parameters.getMaxUndoSteps();

	}

	public int getMaxUndoSteps() {
		return maxUndoSteps;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy