単純なプログラムを書換えよう(Java編)−ObserverとCommand
Observerを使ったMVCにCommandクラスを追加しました.ModelとViewはObserverと同じです.
//Command.java public interface Command{ void execute(Object o); } //end //IncCommand.java public class IncCommand implements Command{ public void execute(Object model){ ((Model)model).inc(); } } //end //DecCommand.java public class DecCommand implements Command{ public void execute(Object model){ ((Model)model).dec(); } } //end //Controller.java import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowEvent; import java.awt.event.WindowAdapter; import java.awt.Frame; import java.util.Observer; public class Controller extends WindowAdapter implements ActionListener{ private Model model; public Controller(Model model){ this.model=model; } public void actionPerformed(ActionEvent actionEvent){ if(actionEvent.getActionCommand()=="inc"){ new IncCommand().execute(model); } else{ new DecCommand().execute(model); } } public void windowOpened(WindowEvent windowEvent){ model.addObserver((Observer)windowEvent.getSource()); model.setValue(model.getValue()); } public void windowClosing(WindowEvent windowEvent){ model.deleteObserver((Observer)windowEvent.getSource()); ((Frame)windowEvent.getSource()).dispose(); if(model.countObservers()==0){ System.exit(0); } } } //end //Model.java import java.util.Observable; public class Model extends Observable{ private int value; public Model(){ this(0); } public Model(int value){ setValue(value); } public final int getValue(){ return value; } public final void setValue(int value){ this.value=value; setChanged(); notifyObservers(); } public int inc(){ return inc(1); } public int inc(int value){ setValue(getValue()+value); return getValue(); } public int dec(){ return dec(1); } public int dec(int value){ setValue(getValue()-value); return getValue(); } } //end //View.java import java.awt.*; import java.util.Observer; import java.util.Observable; public class View extends Frame implements Observer{ private Label value=new Label(); public View(Controller controller){ Panel buttons=new Panel(); Button inc=new Button("inc"); Button dec=new Button("dec"); buttons.add(inc); buttons.add(dec); inc.addActionListener(controller); dec.addActionListener(controller); add(buttons,BorderLayout.SOUTH); add(value,BorderLayout.CENTER); addWindowListener(controller); pack(); show(); } public void update(Observable obs,Object obj){ value.setText(Integer.toString(((Model)obs).getValue())); } } //end //Main.java public class Main{ public static void main(String[] args){ new View(new Controller(new Model())); } } //end