📄 main.java
字号:
/*------------------------------------------------------------------------------Name: Main.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.jmxgui;import java.util.logging.Logger;import java.util.logging.Level;import org.xmlBlaster.util.Global;/** * Class that starts GUI */public class Main { public static void main(String[] args) { //get Globals and Log Global glob = new Global(args); // currently commented out due to a deadlock ...// SplashWindow sw = new SplashWindow("tims_rainbowfish.gif",null, 5000); MainFrame f = new MainFrame(glob);// cc.start(); f.setVisible(true);// sw.setVisible(true); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -