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

Last change on this file since 9272 was 8510, checked in by Don-vip, 9 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 531 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 is to set the name in the plist file for the OS X Application Bundle.
11 *
12 * @since 1023
13 */
14public class JOSM extends MainApplication {
15
16}
Note: See TracBrowser for help on using the repository browser.