Changeset 5836 in josm for trunk/src/org
- Timestamp:
- 2013-04-07T23:18:22+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java
r5266 r5836 65 65 * Replies true if this layer should be uploaded to the server; false, otherwise 66 66 * 67 * @return true if this layer should be uploaded to the server; false, otherwise67 * @return {@code true} if this layer should be uploaded to the server; {@code false}, otherwise 68 68 */ 69 69 public boolean isDoUploadToServer() { … … 74 74 * Sets whether this layer should be uploaded to a file 75 75 * 76 * @param do SaveToFile true to upload; false, to skip uploading76 * @param doUploadToServer {@code true} to upload; {@code false}, to skip uploading 77 77 */ 78 78 … … 142 142 * Replies the upload state of {@link #getLayer()}. 143 143 * <ul> 144 * <li>{@link UploadOrSaveState#OK} if {@link #getLayer() was successfully uploaded</li>145 * <li>{@link UploadOrSaveState# canceled} if uploading {@link #getLayer()was canceled</li>146 * <li>{@link UploadOrSaveState#FAILED} if uploading {@link #getLayer() has failed</li>144 * <li>{@link UploadOrSaveState#OK} if {@link #getLayer()} was successfully uploaded</li> 145 * <li>{@link UploadOrSaveState#CANCELED} if uploading {@link #getLayer()} was canceled</li> 146 * <li>{@link UploadOrSaveState#FAILED} if uploading {@link #getLayer()} has failed</li> 147 147 * </ul> 148 148 * … … 165 165 * Replies the save state of {@link #getLayer()}. 166 166 * <ul> 167 * <li>{@link UploadOrSaveState#OK} if {@link #getLayer() was successfully saved to file</li>168 * <li>{@link UploadOrSaveState# canceled} if saving {@link #getLayer()was canceled</li>169 * <li>{@link UploadOrSaveState#FAILED} if saving {@link #getLayer() has failed</li>167 * <li>{@link UploadOrSaveState#OK} if {@link #getLayer()} was successfully saved to file</li> 168 * <li>{@link UploadOrSaveState#CANCELED} if saving {@link #getLayer()} was canceled</li> 169 * <li>{@link UploadOrSaveState#FAILED} if saving {@link #getLayer()} has failed</li> 170 170 * </ul> 171 171 * -
trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java
r5266 r5836 24 24 * Looks up the credentials for a given type. 25 25 * 26 * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}26 * @param requestorType the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY} 27 27 * for a proxy server 28 * @param host the hostname for these credentials 28 29 * @return the credentials 29 30 * @throws CredentialsAgentException thrown if a problem occurs in a implementation of this interface … … 34 35 * Saves the credentials in <code>credentials</code> for the given service type. 35 36 * 36 * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}37 * @param requestorType the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY} 37 38 * for a proxy server 39 * @param host the hostname for these credentials 38 40 * @param credentials the credentials 39 41 * @throws CredentialsManagerException thrown if a problem occurs in a implementation of this interface … … 43 45 /** 44 46 * 45 * @param requestorType 47 * @param requestorType the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY} 46 48 * for a proxy server 49 * @param host the hostname for these credentials 47 50 * @param noSuccessWithLastResponse true, if the last request with the supplied credentials failed; false otherwise. 48 51 * If true, implementations of this interface are advised to prompt the user for new credentials. -
trunk/src/org/openstreetmap/josm/plugins/Plugin.java
r5241 r5836 69 69 * Sets the plugin information object for this plugin 70 70 * 71 * @par mainfo the plugin information object71 * @param info the plugin information object 72 72 */ 73 73 public void setPluginInformation(PluginInformation info) { -
trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
r5587 r5836 45 45 * Creates the download task 46 46 * 47 * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed47 * @param parent the parent component relative to which the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} is displayed 48 48 * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null. 49 * @param title the title to display in the {@link PleaseWaitDialog}49 * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} 50 50 * @throws IllegalArgumentException thrown if toUpdate is null 51 51 */ … … 61 61 * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null 62 62 * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null. 63 * @param title the title to display in the {@link PleaseWaitDialog}63 * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} 64 64 * @throws IllegalArgumentException thrown if toUpdate is null 65 65 */ … … 178 178 * Replies true if the task was canceled by the user 179 179 * 180 * @return 180 * @return <code>true</code> if the task was stopped by the user 181 181 */ 182 182 public boolean isCanceled() { -
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r5723 r5836 294 294 * Load and instantiate the plugin 295 295 * 296 * @param the plugin class296 * @param klass the plugin class 297 297 * @return the instantiated and initialized plugin 298 298 */ -
trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java
r5723 r5836 25 25 * in the local plugin repositories. 26 26 * 27 * It scans the files in the local plugins repository (see {@link Preferences#getPluginsDirectory()}27 * It scans the files in the local plugins repository (see {@link org.openstreetmap.josm.data.Preferences#getPluginsDirectory()} 28 28 * and extracts plugin information from three kind of files: 29 29 * <ul> -
trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
r5601 r5836 372 372 /** 373 373 * Replies true if the task was canceled 374 * @return 374 * @return <code>true</code> if the task was stopped by the user 375 375 */ 376 376 public boolean isCanceled() {
Note:
See TracChangeset
for help on using the changeset viewer.