Package graphmatcher.gui

Source Code of graphmatcher.gui.StartGraphMatcher

package graphmatcher.gui;

import javax.swing.UIManager;

import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.ConsoleAppender;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import org.apache.log4j.SimpleLayout;

public class StartGraphMatcher {
  private static Logger logger = Logger.getRootLogger();

  public static void main(String[] args) {
    BasicConfigurator.configure(new ConsoleAppender(new SimpleLayout()));
    logger.setLevel(Level.DEBUG);
    logger.info("Starte Anwendung...");
    try {
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (Exception e) {
    }
    GraphMatcherFrame frame = new GraphMatcherFrame();
    frame.setVisible(true);
  }
}
TOP

Related Classes of graphmatcher.gui.StartGraphMatcher

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.