theworld.java
来自「java与模式 一书的源码」· Java 代码 · 共 51 行
JAVA
51 行
package com.javapatterns.command.javaawt;
import java.awt.*;
import java.awt.event.*;
public class TheWorld extends Frame implements ActionListener
{
LetThereBeLightCommand btnLight;
LetThereBeLandCommand btnLand;
ResetCommand btnReset;
GodRestsCommand btnExit;
Panel p;
public TheWorld()
{
super("This is the world, and God says...");
p = new Panel();
p.setBackground(Color.black);
add(p);
btnLight = new LetThereBeLightCommand("Let there be light", p);
btnLand = new LetThereBeLandCommand("Let there be land", p);
btnReset = new ResetCommand("Reset", p);
btnExit = new GodRestsCommand("God rests");
p.add(btnLight);
p.add(btnLand);
p.add(btnReset);
p.add(btnExit);
btnLight.addActionListener(this);
btnLand.addActionListener(this);
btnReset.addActionListener(this);
btnExit.addActionListener(this);
setBounds(100,100,400,200);
setVisible(true);
}
//-----------------------------------------
public void actionPerformed(ActionEvent e)
{
CommandFromGod obj = (CommandFromGod)e.getSource();
obj.Execute();
}
//-----------------------------------------
static public void main(String[] argv)
{
new TheWorld();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?