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

📄 mode.java

📁 This project developed in java leads us to realize a flight reservation system in order to emulate d
💻 JAVA
字号:
/* * Mode.java * The package reservation contains the different class allowing to choose the action to realise. */package reservation;/** * This interface uniform the way to call each sub-class. * It calls the method process of the class CustomDialog or Command according to the instantiation of this interface. * Also it masks the machinery and helps the developer who want to reuse the program. * @author Texier Mathieu and Frederic Bidon */ public interface Mode{    /**Integer defining the QUIET level of verbosity.*/    static final public int QUIET = 1;    /**Integer defining the NORMAL level of verbosity.*/    static final public int NORMAL = 2;    /**Integer defining the HIGH level of verbosity.*/    static final public int HIGH = 3;    /**Integer defining the DEBUG level of verbosity.*/    static final public int DEBUG = 4;        /**     * Open the dialog mode     */        public void process();}

⌨️ 快捷键说明

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