📄 database.java
字号:
package org.abeesoft.fsmgenerator.database;
import java.util.ArrayList;
import java.util.HashMap;
import org.abeesoft.fsmgenerator.specification.State;
public class Database
{
public static final HashMap<String, Integer> mapStateNameId = new HashMap<String, Integer>();
public static final HashMap<String, State> mapStateNameState = new HashMap<String, State>();
public static final HashMap<String, Integer> mapEventNameId = new HashMap<String, Integer>();
public static final HashMap<String, Integer> mapTransitionNameId = new HashMap<String, Integer>();
public static final HashMap<String, Integer> mapCallbackNameId = new HashMap<String, Integer>();
public static final HashMap<String, Integer> mapHookNameId = new HashMap<String, Integer>();
public static final HashMap<String, ArrayList<String>> mapStateTransitionOut = new HashMap<String, ArrayList<String>>();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -