単純なプログラムを書換えよう(Java編)−Commandを抽象クラスにする
interfeceとして作成していたCommandインタフェースを抽象クラスにます.interfeceがabstruct classに変わり,IncCommand/DecCommandクラスで定義していたコンストラクタをCommandクラスに移します.それ以外のクラスの修正はありません.
//Command.java public abstract class Command{ protected Model model; //サブクラスIncCommandとDecCommandから属性modelをアクセスできるようにprotected public Command(Model model){ //interfaceでは定義できなかったコンストラクタを定義 this.model=model; } public abstract void execute(); } //end //IncCommand.java public class IncCommand extends Command{ public IncCommand(Model model){ super(model); } public void execute(){ model.inc(); //スーパークラスCommandの属性modelがprotectedなので,こう書ける } } //end //DecCommand.java public class DecCommand extends Command{ public DecCommand(Model model){ super(model); } public void execute(){ model.dec(); } } //end //CommandDispatcher.java import java.util.Map; import java.util.HashMap; import java.lang.reflect.*; public class CommandDispatcher{ private static Map commands=new HashMap(); private static CommandDispatcher commandDispatcher=new CommandDispatcher(); private static Model model; static{ commands.put("inc","IncCommand"); commands.put("dec","DecCommand"); } private CommandDispatcher(){ } public static CommandDispatcher getInstance(Model model){ commandDispatcher.model=model; return commandDispatcher; } public Command getCommand(String command){ Command executeCommand=null; try{ Class aClass=Class.forName(commands.get(command).toString()); Class[] classArgs={this.model.getClass()}; Constructor aCons=aClass.getConstructor(classArgs); Object[] objArgs={this.model}; executeCommand=(Command)aCons.newInstance(objArgs); } catch(ClassNotFoundException e){ e.printStackTrace(); } catch(NoSuchMethodException e){ e.printStackTrace(); } catch(InstantiationException e){ e.printStackTrace(); } catch(IllegalAccessException e){ e.printStackTrace(); } catch(InvocationTargetException e){ e.printStackTrace(); } finally{ return executeCommand; } } } //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; private CommandDispatcher commandDispatcher; public Controller(Model model){ commandDispatcher=CommandDispatcher.getInstance(model); this.model=model; } public void actionPerformed(ActionEvent actionEvent){ commandDispatcher.getCommand(actionEvent.getActionCommand()).execute(); } 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