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

org.fxmisc.richtext.PlainTextChange Maven / Gradle / Ivy

package org.fxmisc.richtext;


public class PlainTextChange extends TextChange {

    public PlainTextChange(int position, String removed, String inserted) {
        super(position, removed, inserted);
    }

    @Override
    protected final String concat(String a, String b) {
        return a + b;
    }

    @Override
    protected final String sub(String s, int from, int to) {
        return s.substring(from, to);
    }

    @Override
    protected final PlainTextChange create(int position, String removed, String inserted) {
        return new PlainTextChange(position, removed, inserted);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy