- Timestamp:
- 2013-10-30T01:57:46+01:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/Main.java
r6336 r6342 804 804 /** 805 805 * Closes JOSM and optionally terminates the Java Virtual Machine (JVM). If there are some unsaved data layers, asks first for user confirmation. 806 * @param exit If {@code true}, the JVM is terminated by running {@link System#exit} with a return code of 0. 806 * @param exit If {@code true}, the JVM is terminated by running {@link System#exit} with a given return code. 807 * @param exitCode The return code 807 808 * @return {@code true} if JOSM has been closed, {@code false} if the user has cancelled the operation. 808 809 * @since 3378 -
trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java
r6084 r6342 18 18 import org.openstreetmap.josm.gui.preferences.server.ProxyPreferencesPanel; 19 19 import org.openstreetmap.josm.gui.widgets.VerticallyScrollablePanel; 20 20 21 public class ServerAccessPreference extends DefaultTabPreferenceSetting { 21 22 … … 38 39 /** panel for configuring proxy preferences */ 39 40 private ProxyPreferencesPanel pnlProxyPreferences; 40 /** panel for backup preferences */41 41 42 42 /** -
trunk/src/org/openstreetmap/josm/gui/widgets/UrlLabel.java
r6340 r6342 41 41 42 42 public UrlLabel(String url, String description) { 43 this (url, url, 0);43 this (url, description, 0); 44 44 } 45 45 -
trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControl.java
r6070 r6342 14 14 { 15 15 /** 16 * If the remote co trol feature is enabled or disabled. If disabled,16 * If the remote control feature is enabled or disabled. If disabled, 17 17 * it should not start the server. 18 18 */ … … 49 49 * @param handlerClass The additional request handler. 50 50 */ 51 public void addRequestHandler(String command, Class<? extends RequestHandler> handlerClass) 52 { 51 public void addRequestHandler(String command, Class<? extends RequestHandler> handlerClass) { 53 52 RequestProcessor.addRequestHandlerClass(command, handlerClass); 54 53 }
Note:
See TracChangeset
for help on using the changeset viewer.