OnJava8-Examples/patterns/CommandPattern.java

50 lines
979 B
Java
Raw Normal View History

2015-05-05 11:20:13 -07:00
//: patterns/CommandPattern.java
import java.util.*;
interface Command {
void execute();
}
class Hello implements Command {
@Override
public void execute() {
System.out.print("Hello ");
}
}
class World implements Command {
@Override
public void execute() {
System.out.print("World! ");
}
}
class IAm implements Command {
@Override
public void execute() {
System.out.print("I'm the command pattern!");
}
}
// A Command object that holds commands:
class Macro implements Command {
private ArrayList commands = new ArrayList();
public void add(Command c) { commands.add(c); }
@Override
public void execute() {
Iterator it = commands.iterator();
while(it.hasNext())
((Command)it.next()).execute();
}
}
public class CommandPattern {
public static void main(String args[]) {
Macro macro = new Macro();
macro.add(new Hello());
macro.add(new World());
macro.add(new IAm());
macro.execute();
}
} ///:~