?? guimain.java
字號:
package com.sutternow.swingkar;import com.sutternow.swingkar.ReogViewer;import javax.swing.*;/** Main Entry point for StrutsGenerator GUI * * @author <a href="mailto:payne@telex.com">Matthew Payne</a> * @author Matthew Payne * @version $Revision: 1.11 $ */public class GuiMain { /* @todo - DBReverse modification so project properties and other parts are kept -- make this a preference i.e. full reverse or just freshen beans? @todo - Dynamic templates that pull from xml config file (beans) @todo - update view after reverse @todo - gui to just select certain templates @---------- ask for cut of first beta @todo -- separate aggregate condition in query pane to separate area @todo - tooltips and more informative help @todo - look into revising mask and validation enty @todo - icons -- done may need addition prettying up @todo - put validation on certain items that require it -- ??? //jar:file:/e:/java/kunststoff-2_0_1.zip!/licence.txt */ public static void main(String[] args) { ReogViewer viewer; if (args.length > 0) { viewer = new ReogViewer(args[0]); } else { viewer = new ReogViewer(); } JFrame viewFrame = viewer.getViewFrame(); viewFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); viewFrame.show(); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -