⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 theworld.java

📁 这个文件里面包含了java设计模式的一些例子讲解
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -