📄 main.java
字号:
package IrisRecog;/** * Main.java * * Drives the creation of the model-view design and starts the application GUI. * * @owner Michael Huffman * @author Team 6: A. Bare, I. Chaugule,M. Huffman, M. Pearson, C. Schell * @version 0.0.1 * * CSC 480 Section 2 * Fall 2005 * 10/8/05 * * Edit History: * 10/1/05 - created * 10/9/05 - updated model-view design, documented and commented */ public class Main{ /** * Main method initiates the model and the desing, relates them together, * and starts the application GUI. * * @param args String array of command line arguments */ public static void main(String [] args) { GUI gui_View = new GUI(); IrisRecog irg_Model = new IrisRecog(gui_View); gui_View.setModel(irg_Model); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -