org.fxmisc.richtext.RichTextChange 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
package org.fxmisc.richtext;
public class RichTextChange extends TextChange, RichTextChange> {
public RichTextChange(int position, StyledDocument removed, StyledDocument inserted) {
super(position, removed, inserted);
}
@Override
protected final StyledDocument concat(StyledDocument a, StyledDocument b) {
return a.concat(b);
}
@Override
protected final StyledDocument sub(StyledDocument doc, int from, int to) {
return doc.subSequence(from, to);
}
@Override
protected final RichTextChange create(int position, StyledDocument removed, StyledDocument inserted) {
return new RichTextChange(position, removed, inserted);
}
}