AppMain.java
资源名称:Appjxc.rar [点击查看]
上传用户:whbcdz
上传日期:2008-08-04
资源大小:7683k
文件大小:2k
源码类别:
JavaScript
开发平台:
Java
- package appjxc;
- import java.awt.Toolkit;
- import javax.swing.SwingUtilities;
- import javax.swing.UIManager;
- import java.awt.Dimension;
- import appjxc.view.JF_main;
- import appjxc.dao.AdapterDao;
- public class AppMain {
- boolean packFrame = false;
- /**
- * Construct and show the application.
- */
- public AppMain() {
- JF_main frame = new JF_main();
- // Validate frames that have preset sizes
- // Pack frames that have useful preferred size info, e.g. from their layout
- if (packFrame) {
- frame.pack();
- } else {
- frame.validate();
- }
- // Center the window
- Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
- Dimension frameSize = frame.getSize();
- if (frameSize.height > screenSize.height) {
- frameSize.height = screenSize.height;
- }
- if (frameSize.width > screenSize.width) {
- frameSize.width = screenSize.width;
- }
- frame.setLocation((screenSize.width - frameSize.width) / 2,
- (screenSize.height - frameSize.height) / 2);
- frame.setVisible(true);
- }
- /**
- * Application entry point.
- *
- * @param args String[]
- */
- /*public static void main(String[] args) {
- SwingUtilities.invokeLater(new Runnable() {
- public void run() {
- try {
- //UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
- // new AdapterDao();
- //Sleep(10000);
- UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
- // SwingUtilities.updateComponentTreeUI(null);
- } catch (Exception exception) {
- exception.printStackTrace();
- }
- }
- });
- //new AppMain();
- new appjxc.view.JF_Login();
- }*/
- }