source: josm/trunk/src/JOSM.java@ 7205

Last change on this file since 7205 was 5829, checked in by Don-vip, 11 years ago

fix javadoc + minor refactorization/code cleanup

  • Property svn:eol-style set to native
File size: 613 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2import org.openstreetmap.josm.gui.MainApplication;
3
4/**
5 * JOSM main class (entry point of the application).<br/>
6 *
7 * The name of the main class will be the name of the application menu on OS X.
8 * so instead of exposing "org.openstreetmap.josm.gui.MainApplication" to the
9 * user, we subclass it with a nicer name "JOSM".
10 * An alternative would be to set the name in the plist file---but JOSM usually
11 * is not delivered as an OS X Application Bundle, so we have no plist file.
12 *
13 * @since 1023
14 */
15public class JOSM extends MainApplication {}
Note: See TracBrowser for help on using the repository browser.