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

📄 passengertransportmisapp.java

📁 客运售票管理信息系统
💻 JAVA
字号:
/* * PassengerTransportMISApp.java */package passengertransportmis;import org.jdesktop.application.Application;import org.jdesktop.application.SingleFrameApplication;/** * The main class of the application. */public class PassengerTransportMISApp extends SingleFrameApplication {	private static String userInfo[] = null;	private static short role;	    public static short getRole() {		return role;	}	public static void setRole(short role) {		PassengerTransportMISApp.role = role;	}	/**     * At startup create and show the main frame of the application.     */    @Override protected void startup() {        show(new PassengerTransportMISView(this));    }    /**     * This method is to initialize the specified window by injecting resources.     * Windows shown in our application come fully initialized from the GUI     * builder, so this additional configuration is not needed.     */    @Override protected void configureWindow(java.awt.Window root) {    }    /**     * A convenient static getter for the application instance.     * @return the instance of PassengerTransportMISApp     */    public static PassengerTransportMISApp getApplication() {        return Application.getInstance(PassengerTransportMISApp.class);    }    /**     * Main method launching the application.     */    public static void Main(String []args) {        launch(PassengerTransportMISApp.class, args);    }	public static String[] getUserInfo() {		return userInfo;	}	public static void setUserInfo(String[] userInfo) {		PassengerTransportMISApp.userInfo = userInfo;	}}

⌨️ 快捷键说明

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