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

org.fxmisc.undo.impl.RevisionedChange Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy