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

Last change on this file since 8509 was 8509, checked in by Don-vip, 10 years ago

fix many checkstyle violations

  • Property svn:eol-style set to native
File size: 597 bytes
Line 
1// License: GPL. For details, see LICENSE file.
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.