
- Client: The client is responsible for creating the Command object and setting it's reciever.
public class ClientApp {
public static void main(String[] args) {
Receiver rec = new Receiver();
Command incCommand = new IncrementCommand(rec);
Command decCommand = new DecrementCommand(rec);
Invoker invoker = new Invoker();
invoker.setDecCommand(decCommand);
invoker.setIncCommand(incCommand);
invoker.addRequest();
invoker.addRequest();
invoker.removeRequest();
System.out.println(rec.getValue());
}
}ClientApp.java - Invoker: The Invoker acts as a placeholder for the Command object and invokes the execute method on the Command. In case of undoable commands, it stores the command in a stack (for multi-level undo, or just the command for single level undo), before executing the command.
public class Invoker {
Stack<Command> commands;
Command incCommand;
Command decCommand;
public Invoker() {
commands = new Stack<Command>();
}
public void setIncCommand(Command command) {
incCommand = command;
}
public void setDecCommand(Command command) {
decCommand = command;
}
public void undoAll() {
Command cmd = null;
while (!commands.empty()) {
cmd = commands.pop();
cmd.undo();
}
}
public void addRequest() {
incCommand.execute();
commands.add(incCommand);
}
public void removeRequest() {
decCommand.execute();
commands.add(decCommand);
}
public void commit() {
commands = new Stack<Command>();
}
}Invoker.java - Receiver: The object that performs the operations associated with carrying out a request. Any class may serve as a Receiver.
public class Receiver {
private int value;
public Receiver() {
value = 0;
}
public void increment() {
++value;
}
public void decrement() {
--value;
}
public int getValue() {
return value;
}
}Receiver.java - Command: The command object represents the request operation. The command implements execute() method, which invokes the corresponding operations on the Reciever. This defines a binding between a Receiver object and an action.
public interface Command {
public void execute();
public void undo();
}Command.java public class IncrementCommand implements Command {
Receiver receiver;
public IncrementCommand(Receiver rec) {
receiver = rec;
}
public void execute() {
receiver.increment();
}
public void undo() {
receiver.decrement();
}
}IncrementCommand.java public class DecrementCommand implements Command {
Receiver receiver;
public DecrementCommand(Receiver receiver) {
this.receiver = receiver;
}
public void execute() {
receiver.decrement();
}
public void undo() {
receiver.increment();
}
}DecrementCommand.java
Additional Notes
- A command can have a wide range of abilities from a simple interface between the client and receiver to being a receiver itself.
- When supporting multi-level undo, a command may store state information, which mean that, with each execute(), you have to copy the state of the command at that time. In such cases a copy of the command has to be added to the history stack.
good one!
ReplyDeletehybrid app development in usa
ReplyDeletephp web development in usa
python web development in usa
angular js development in usa
wordpress development company in usa
casquette ford Immigration
ReplyDeletechaussure carla moreau
triciclo usato milano
chaussures de sécurité facom
foot locker nike react element
scatola protezione stagna
nike metcon 5 rojas
zapatillas de agua niña
veste velour carhartt
damen lack schnürer
cappotto rosso scarpe nike
fiore garofano amazon
nike presto extreme pas cher
nike pegasus 94
shorts fitness feminino
nike t shirt tumblr
quadri da disegnare amazon
chinelo slide da melissa
tenis all star feminino branco couro
calzoncillos puma hombre
veste per battesimo amazon
nike air force modelo agotado
cartera levis hombre
filtre pour aspirateur samsung sc4780
autoradio gps vdo
nike tribute veste
soldes chaussures homme caterpillar hiver cafétéria
amazon sandalias reef
chanclas new balance niña
kit de creation de bracelets utilisation
wc suspendu mural amazon
foulard en soie homme
all star converse star player
paragliding přilby
nike anzug nba rot
camisa da ferroviária
tapie adidas credit lyonnais
gucci handbags uk
air force 1 nike outfit men basket
tumbona terraza ikea
ReplyDeletenike zoom strike sprinter
gants si assault factory pilot noir oakley
camisa cuadros franela mujer
galocha rosa feminina
adidas run falcon on feet
ghete galbene piele
hama stiftplatte einhorn amazon
moleton nike preço
veste velour carhartt
bañador neopreno mujer oysho
jogging fille 14 ans adidas
melhores marcas de mochilas masculinas
beistelltisch mit stauraum
nike air max 97 silber
adidas niño verde agua
béret a pompon bretelles uniforme
rompecabezas de obras de arte para arma
venta de bicicletas para ejercicio
sudadera nike vintage
lidl online dirndl
adidas noir doré
foot locker nike react element
filtre pour aspirateur samsung sc4780
adidas stabil x junior
I need to thank you for this very good read and i have bookmarked to check out new things from your post. Thank you very much for sharing such a useful article and will definitely save and revisit your site.
ReplyDeleteartificial intelligence internship | best final year projects for cse | internship certificate online | internship for mba finance students | internship meaning in tamil