org.fxmisc.undo.impl.RevisionedChange 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
FX-Text-Area for formatted text and other special effects.
package org.fxmisc.undo.impl;
class RevisionedChange {
private final C change;
private final long revision;
public RevisionedChange(C change, long revision) {
this.change = change;
this.revision = revision;
}
public C getChange() {
return change;
}
public long getRevision() {
return revision;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy