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

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

There is a newer version: 2.1.1
Show newest version
package org.fxmisc.undo.impl;

public interface ChangeQueue {

    interface QueuePosition {
        boolean isValid();
    }

    boolean hasNext();

    boolean hasPrev();

    C next();

    C prev();

    @SuppressWarnings({"unchecked"})
    void push(C... changes);

    QueuePosition getCurrentPosition();

    void forgetHistory();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy