/*
* 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);
}
});
}
}