* update SpatialPartitionBubbles - fix Sonar blocker issue * fix Sonar critical issue - Define constant instead of duplicating the literal * fix Sonar critical issue - remove unnecessary default constructor * fix Sonar critical issue - Define constant instead of duplicating the literal * fix Sonar critical issue - Define constant instead of duplicating the literal * fix Sonar critical issue - Define constant instead of duplicating the literal * fix Sonar critical issue - fix checkstyle issue * fix Sonar critical issue - fix code smells * fix Sonar critical issue - fix code smells * fix Sonar critical issue - fix code smells * fix sonarbugs - adding test cases for Commander class * sonar fix - add assert commands in CommanderTest * sonar fix - add test cases for CommanderTest * sonar fix - add test cases for CommanderTest * sonar fix - add test cases for CommanderTest * sonar fix - add test cases for CommanderTest * sonar fix - add test cases for CommanderTest * sonar fix - add test cases for CommanderTest * sonar fix - add test cases for CommanderTest * sonar bug fix & test cases * sonar bug fix & test cases * sonar bug fix & test cases * sonar bug fix & test cases * sonar bug fix & test cases * Revert "sonar bug fix & test cases" This reverts commit 640dd55e35a9730e981d14665913f3d9b5b2d3b2. * sonar bug fix & test cases * sonar bug fix & test cases * sonar bug fix & test cases * sonar bug fix : avoid Thread.sleep * sonar bug fix : cleanup Thread.sleep * sonar bug fix: test commit * sonar bug fix: test commit Co-authored-by: Subhrodip Mohanta <hello@subho.xyz> Co-authored-by: atayal <Ankush_Tayal@intuit.com>
74 lines
2.1 KiB
Java
74 lines
2.1 KiB
Java
/*
|
|
* The MIT License
|
|
* Copyright © 2014-2021 Ilkka Seppälä
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
package com.iluwatar.command;
|
|
|
|
import java.util.Deque;
|
|
import java.util.LinkedList;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
/**
|
|
* Wizard is the invoker of the commands.
|
|
*/
|
|
@Slf4j
|
|
public class Wizard {
|
|
|
|
private final Deque<Runnable> undoStack = new LinkedList<>();
|
|
private final Deque<Runnable> redoStack = new LinkedList<>();
|
|
|
|
/**
|
|
* Cast spell.
|
|
*/
|
|
public void castSpell(Runnable runnable) {
|
|
runnable.run();
|
|
undoStack.offerLast(runnable);
|
|
}
|
|
|
|
/**
|
|
* Undo last spell.
|
|
*/
|
|
public void undoLastSpell() {
|
|
if (!undoStack.isEmpty()) {
|
|
var previousSpell = undoStack.pollLast();
|
|
redoStack.offerLast(previousSpell);
|
|
previousSpell.run();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Redo last spell.
|
|
*/
|
|
public void redoLastSpell() {
|
|
if (!redoStack.isEmpty()) {
|
|
var previousSpell = redoStack.pollLast();
|
|
undoStack.offerLast(previousSpell);
|
|
previousSpell.run();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Wizard";
|
|
}
|
|
}
|