Meidsclient App

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

/* * MEIDSClientApp.java */ package meidsclient; import import import import import import import import com.jtattoo.plaf.hifi.HiFiLookAndFeel; com.jtattoo.plaf.luna.LunaLookAndFeel; java.util.logging.Level; java.util.logging.

Logger; javax.swing.UIManager; javax.swing.UnsupportedLookAndFeelException; org.jdesktop.application.Application; org.jdesktop.application.SingleFrameApplication;

/** * The main class of the application. */ public class MEIDSClientApp extends SingleFrameApplication { /** * At startup create and show the main frame of the application. */ @Override protected void startup() { try {

UIManager.setLookAndFeel(new HiFiLookAndFeel()); } catch (UnsupportedLookAndFeelException ex) { Logger.getLogger(MEIDSClientApp.class.getName()).log(Level.SEVERE, n ull, ex); } show(new MEIDSClientView(this)); } /** * This method is to initialize the specified window by injecting resources. * Windows shown in our application come fully initialized from the GUI * builder, so this additional configuration is not needed. */ @Override protected void configureWindow(java.awt.Window root) { } /** * A convenient static getter for the application instance. * @return the instance of MEIDSClientApp */ public static MEIDSClientApp getApplication() { return Application.getInstance(MEIDSClientApp.class); } /** * Main method launching the application. */ public static void main(String[] args) { launch(MEIDSClientApp.class, args); }

You might also like