org.fxmisc.richtext.model.SimpleEditableStyledDocument 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;
/**
* Provides an implementation of {@link EditableStyledDocument} that is specified for {@link StyledText} as its segment.
* See also {@link GenericEditableStyledDocument}.
*/
public final class SimpleEditableStyledDocument extends GenericEditableStyledDocumentBase, S> {
public SimpleEditableStyledDocument(PS initialParagraphStyle, S initialStyle) {
super(initialParagraphStyle, initialStyle, StyledText.textOps());
}
}