Package de.stiebernet.tools.jpg2pdf

Source Code of de.stiebernet.tools.jpg2pdf.Main

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package de.stiebernet.tools.jpg2pdf;

import javax.swing.SwingUtilities;
import javax.swing.UIManager;

import de.stiebernet.tools.jpg2pdf.gui.ImagePrintGui;

/**
*
* @author Sven Stieber
*/
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {

            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (Exception e) {
                    e.printStackTrace();
                }
                ImagePrintGui gui = new ImagePrintGui();
                gui.setVisible(true);
            }
        });
    }

}
TOP

Related Classes of de.stiebernet.tools.jpg2pdf.Main

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.