Package org.fxmisc.undo.impl
Interface ChangeQueue<C>
- All Known Implementing Classes:
FixedSizeChangeQueue,UnlimitedChangeQueue,ZeroSizeChangeQueue
public interface ChangeQueue<C>
-
Nested Class Summary
Nested Classes -
Method Summary
-
Method Details
-
hasNext
boolean hasNext() -
hasPrev
boolean hasPrev() -
peekNext
C peekNext()Returns the next item. Current position stays unchanged. -
peekPrev
C peekPrev()Returns the previous item. Current position stays unchanged. -
next
C next()Returns the next item and increases the current position by 1. -
prev
C prev()Returns the previous item and decreases the current position by 1. -
push
-
getCurrentPosition
ChangeQueue.QueuePosition getCurrentPosition() -
forgetHistory
void forgetHistory()
-