Package org.osm2world.viewer

Source Code of org.osm2world.viewer.Viewer

package org.osm2world.viewer;

import javax.swing.UIManager;

import org.apache.commons.configuration.BaseConfiguration;
import org.osm2world.viewer.view.ViewerFrame;

public class Viewer {
 
  public static void main(String[] args) {
    new Viewer(args);
  }
 
  private Viewer(String[] args) {
   
    try {
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch(Exception e) {
      System.out.println("Error setting native look and feel: " + e);
    }
   
    new ViewerFrame(new BaseConfiguration(), null, null).setVisible(true);
   
  }
 
}
TOP

Related Classes of org.osm2world.viewer.Viewer

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.