org.fxmisc.richtext.model.TextOpsBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of richtextfx Show documentation
Show all versions of richtextfx Show documentation
Rich-text area for JavaFX
The newest version!
package org.fxmisc.richtext.model;
/**
* Base class for a {@link TextOps} implementation that uses a text-based segment
*
* @param the type of segment
* @param the type of segment style
*/
public abstract class TextOpsBase extends SegmentOpsBase implements TextOps {
TextOpsBase(SEG empty) {
super(empty);
}
}