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

📄 guimain.java

📁 自动生成JAVA-Struts网站的程序
💻 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 + -