Ticket #1622: JOSM.java

File JOSM.java, 571 bytes (added by Henry Loenwind, 16 years ago)
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2//Licence: GPL
3
4// Note: The name of the main class will be the name of the application menu on OS X.
5// so instead of exposing "org.openstreetmap.josm.gui.MainApplication" to the
6// user, we subclass it with a nicer name "JOSM".
7// An alternative would be to set the name in the plist file---but JOSM usually
8// is not delivered as an OS X Application Bundle, so we have no plist file.
9
10import org.openstreetmap.josm.gui.MainApplication;
11
12public class JOSM extends MainApplication {}