xmasmanga.java

来自「一款竞猜类型的j2me代码,可以方便的集成在eclipse,netbeans」· Java 代码 · 共 53 行

JAVA
53
字号
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   XmasManga.java

import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;

public class XmasManga extends MIDlet
    implements CommandListener
{

    Display _fld0;
    DS_Effects _fld9h;
    private Command _fld0i;

    public XmasManga()
    {
        _fld0i = new Command("Fine", 1, 0);
        _fld0 = Display.getDisplay(this);
        _fld9h = new DS_Effects(_fld0);
        _fld9h.addCommand(_fld0i);
        _fld9h.setCommandListener(this);
    }

    public void commandAction(Command command, Displayable displayable)
    {
        if(command == _fld0i)
        {
            destroyApp(false);
            notifyDestroyed();
        }
    }

    public void destroyApp(boolean flag)
    {
        _fld0.setCurrent(null);
        _fld9h._mth0();
    }

    public void pauseApp()
    {
        _fld9h._mth2b();
    }

    public void startApp()
        throws MIDletStateChangeException
    {
        _fld9h._mth4b();
    }
}

⌨️ 快捷键说明

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