![JAR search and dependency download from the Maven repository](/logo.png)
org.fxmisc.undo.impl.ChangeQueue Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy