📄 action.java
字号:
// Decompiled by DJ v2.9.9.60 Copyright 2000 Atanas Neshkov Date: 2005-4-3 23:30:16
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: Action.java
package NBMaJiang;
public class Action
{
public Action(String label, int type, int index)
{
this.type = type;
this.index = index;
caption = label;
}
public String getLabel()
{
return caption;
}
public int getType()
{
return type;
}
public int getIndex()
{
return index;
}
public static final int MENU = 1;
public static final int BUTTON = 2;
public static final int INIT = 3;
public static final int START = 4;
public static final int SELECT = 5;
public static final int RETURN = 6;
int type;
int index;
String caption;
// static
// {
// MENU = 1;
// BUTTON = 2;
// INIT = 3;
// START = 4;
// SELECT = 5;
// RETURN = 6;
// }
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -