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

📄 psohelpframe$psohelpdialog.java

📁 用Java实现的粒子群优化算法
💻 JAVA
字号:
// Decompiled by Jad v1.5.7f. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   PSOHelpFrame.java

package ci.ec.pso.gui;

import java.awt.*;
import java.awt.event.*;

// Referenced classes of package ci.ec.pso.gui:
//            PSOHelpFrame

class PSOHelpDialog extends Dialog
{

    public PSOHelpDialog(Frame frame)
    {
        super(frame, "About PSO", true);
        Panel panel = new Panel();
        panel.setLayout(new GridLayout(3, 1));
        panel.add(new Label("Particle Swarm Algorithm in Java"));
        panel.add(new Label("Version 1.0, December 1998"));
        panel.add(new Label("Embedded Systems Team, EDS"));
        add(panel, "Center");
        Panel panel1 = new Panel();
        Button button = new Button("OK");
        panel1.add(button);
        add(panel1, "South");
        button.addActionListener(new _cls2());
        addWindowListener(new _cls3());
        setSize(280, 150);
    }

// Unreferenced inner classes:

/* anonymous class */
    final class PSOHelpFrame._cls2
        implements ActionListener
    {

        public void actionPerformed(ActionEvent actionevent)
        {
            dispose();
        }

    }


// Unreferenced inner classes:

/* anonymous class */
    final class PSOHelpFrame._cls3 extends WindowAdapter
    {

        public void windowClosing(WindowEvent windowevent)
        {
            dispose();
        }

    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -