Uses of Interface
org.fxmisc.undo.UndoManager
Packages that use UndoManager
-
Uses of UndoManager in org.fxmisc.undo
Methods in org.fxmisc.undo that return UndoManagerModifier and TypeMethodDescriptiondefault <C> UndoManager<List<C>> UndoManagerFactory.createMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply) Creates anUndoManagerthat tracks lists of changes emitted fromchangeStream.default <C> UndoManager<List<C>> UndoManagerFactory.createMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge) Creates anUndoManagerthat tracks and optionally merges lists of changes emitted fromchangeStream.default <C> UndoManager<List<C>> UndoManagerFactory.createMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity) Creates anUndoManagerthat tracks and optionally merges lists of changes emitted fromchangeStream.<C> UndoManager<List<C>> UndoManagerFactory.createMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity, Duration preventMergeDelay) Creates anUndoManagerthat tracks and optionally merges lists of changes emitted fromchangeStream.default <C> UndoManager<C> UndoManagerFactory.createSingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply) Creates anUndoManagerthat tracks changes emitted fromchangeStream.default <C> UndoManager<C> UndoManagerFactory.createSingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge) Creates anUndoManagerthat tracks and optionally merges changes emitted fromchangeStream.default <C> UndoManager<C> UndoManagerFactory.createSingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity) Creates anUndoManagerthat tracks and optionally merges changes emitted fromchangeStream.<C> UndoManager<C> UndoManagerFactory.createSingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity, Duration preventMergeDelay) Creates anUndoManagerthat tracks and optionally merges changes emitted fromchangeStream.static <C> UndoManager<List<C>> UndoManagerFactory.fixedSizeHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, int capacity) Creates anUndoManagerwith bounded history.static <C> UndoManager<List<C>> UndoManagerFactory.fixedSizeHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge, int capacity) Creates anUndoManagerwith bounded history.static <C> UndoManager<List<C>> UndoManagerFactory.fixedSizeHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity, Duration preventMergeDelay, int capacity) Creates anUndoManagerwith bounded history.static <C> UndoManager<C> UndoManagerFactory.fixedSizeHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, int capacity) Creates anUndoManagerwith bounded history.static <C> UndoManager<C> UndoManagerFactory.fixedSizeHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge, int capacity) Creates anUndoManagerwith bounded history.static <C> UndoManager<C> UndoManagerFactory.fixedSizeHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity, Duration preventMergeDelay, int capacity) Creates anUndoManagerwith bounded history.static <C> UndoManager<List<C>> UndoManagerFactory.unlimitedHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply) Creates anUndoManagerwith unlimited history.static <C> UndoManager<List<C>> UndoManagerFactory.unlimitedHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge) Creates anUndoManagerwith unlimited history.static <C> UndoManager<List<C>> UndoManagerFactory.unlimitedHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity) Creates anUndoManagerwith unlimited history.static <C> UndoManager<List<C>> UndoManagerFactory.unlimitedHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream, Function<? super C, ? extends C> invert, Consumer<List<C>> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity, Duration preventMergeDelay) Creates anUndoManagerwith unlimited history.static <C> UndoManager<C> UndoManagerFactory.unlimitedHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply) Creates anUndoManagerwith unlimited history.static <C> UndoManager<C> UndoManagerFactory.unlimitedHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge) Creates anUndoManagerwith unlimited history.static <C> UndoManager<C> UndoManagerFactory.unlimitedHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity) Creates anUndoManagerwith unlimited history.static <C> UndoManager<C> UndoManagerFactory.unlimitedHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream, Function<? super C, ? extends C> invert, Consumer<C> apply, BiFunction<C, C, Optional<C>> merge, Predicate<C> isIdentity, Duration preventMergeDelay) Creates anUndoManagerwith unlimited history.static <C> UndoManager<List<C>> UndoManagerFactory.zeroHistoryMultiChangeUM(org.reactfx.EventStream<List<C>> changeStream) Creates anUndoManagerwith no history: all changes emitted fromchangeStreamwill be immediately forgotten.static <C> UndoManager<C> UndoManagerFactory.zeroHistorySingleChangeUM(org.reactfx.EventStream<C> changeStream) Creates anUndoManagerwith no history: all changes emitted fromchangeStreamwill be immediately forgotten. -
Uses of UndoManager in org.fxmisc.undo.impl
Classes in org.fxmisc.undo.impl that implement UndoManagerModifier and TypeClassDescriptionclassUndoManagerImplspecified for aListof changesclassImplementation forUndoManagerfor single changes.