Index: trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java	(revision 5835)
+++ trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java	(revision 5836)
@@ -65,5 +65,5 @@
      * Replies true if this layer should be uploaded to the server; false, otherwise
      *
-     * @return true if this layer should be uploaded to the server; false, otherwise
+     * @return {@code true} if this layer should be uploaded to the server; {@code false}, otherwise
      */
     public boolean isDoUploadToServer() {
@@ -74,5 +74,5 @@
      * Sets whether this layer should be uploaded to a file
      *
-     * @param doSaveToFile true to upload; false, to skip uploading
+     * @param doUploadToServer {@code true} to upload; {@code false}, to skip uploading
      */
 
@@ -142,7 +142,7 @@
      * Replies the upload state of {@link #getLayer()}.
      * <ul>
-     *   <li>{@link UploadOrSaveState#OK} if {@link #getLayer() was successfully uploaded</li>
-     *   <li>{@link UploadOrSaveState#canceled} if uploading {@link #getLayer() was canceled</li>
-     *   <li>{@link UploadOrSaveState#FAILED} if uploading {@link #getLayer() has failed</li>
+     *   <li>{@link UploadOrSaveState#OK} if {@link #getLayer()} was successfully uploaded</li>
+     *   <li>{@link UploadOrSaveState#CANCELED} if uploading {@link #getLayer()} was canceled</li>
+     *   <li>{@link UploadOrSaveState#FAILED} if uploading {@link #getLayer()} has failed</li>
      * </ul>
      *
@@ -165,7 +165,7 @@
      * Replies the save state of {@link #getLayer()}.
      * <ul>
-     *   <li>{@link UploadOrSaveState#OK} if {@link #getLayer() was successfully saved to file</li>
-     *   <li>{@link UploadOrSaveState#canceled} if saving {@link #getLayer() was canceled</li>
-     *   <li>{@link UploadOrSaveState#FAILED} if saving {@link #getLayer() has failed</li>
+     *   <li>{@link UploadOrSaveState#OK} if {@link #getLayer()} was successfully saved to file</li>
+     *   <li>{@link UploadOrSaveState#CANCELED} if saving {@link #getLayer()} was canceled</li>
+     *   <li>{@link UploadOrSaveState#FAILED} if saving {@link #getLayer()} has failed</li>
      * </ul>
      *
Index: trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java	(revision 5835)
+++ trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java	(revision 5836)
@@ -24,6 +24,7 @@
      * Looks up the credentials for a given type.
      *
-     * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
+     * @param requestorType the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
      * for a proxy server
+     * @param host the hostname for these credentials
      * @return the credentials
      * @throws CredentialsAgentException thrown if a problem occurs in a implementation of this interface
@@ -34,6 +35,7 @@
      * Saves the credentials in <code>credentials</code> for the given service type.
      *
-     * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
+     * @param requestorType the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
      * for a proxy server
+     * @param host the hostname for these credentials
      * @param credentials the credentials
      * @throws CredentialsManagerException thrown if a problem occurs in a implementation of this interface
@@ -43,6 +45,7 @@
     /**
      *
-     * @param requestorType  the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
+     * @param requestorType the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
      * for a proxy server
+     * @param host the hostname for these credentials
      * @param noSuccessWithLastResponse true, if the last request with the supplied credentials failed; false otherwise.
      * If true, implementations of this interface are advised to prompt the user for new credentials.
Index: trunk/src/org/openstreetmap/josm/plugins/Plugin.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/Plugin.java	(revision 5835)
+++ trunk/src/org/openstreetmap/josm/plugins/Plugin.java	(revision 5836)
@@ -69,5 +69,5 @@
      * Sets the plugin information object for this plugin
      *
-     * @parma info the plugin information object
+     * @param info the plugin information object
      */
     public void setPluginInformation(PluginInformation info) {
Index: trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java	(revision 5835)
+++ trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java	(revision 5836)
@@ -45,7 +45,7 @@
      * Creates the download task
      *
-     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed
+     * @param parent the parent component relative to which the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} is displayed
      * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null.
-     * @param title the title to display in the {@link PleaseWaitDialog}
+     * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog}
      * @throws IllegalArgumentException thrown if toUpdate is null
      */
@@ -61,5 +61,5 @@
      * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
      * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null.
-     * @param title the title to display in the {@link PleaseWaitDialog}
+     * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog}
      * @throws IllegalArgumentException thrown if toUpdate is null
      */
@@ -178,5 +178,5 @@
      * Replies true if the task was canceled by the user
      *
-     * @return
+     * @return <code>true</code> if the task was stopped by the user
      */
     public boolean isCanceled() {
Index: trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java	(revision 5835)
+++ trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java	(revision 5836)
@@ -294,5 +294,5 @@
      * Load and instantiate the plugin
      *
-     * @param the plugin class
+     * @param klass the plugin class
      * @return the instantiated and initialized plugin
      */
Index: trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java	(revision 5835)
+++ trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java	(revision 5836)
@@ -25,5 +25,5 @@
  * in the local plugin repositories.
  *
- * It scans the files in the local plugins repository (see {@link Preferences#getPluginsDirectory()}
+ * It scans the files in the local plugins repository (see {@link org.openstreetmap.josm.data.Preferences#getPluginsDirectory()}
  * and extracts plugin information from three kind of files:
  * <ul>
Index: trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java	(revision 5835)
+++ trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java	(revision 5836)
@@ -372,5 +372,5 @@
     /**
      * Replies true if the task was canceled
-     * @return
+     * @return <code>true</code> if the task was stopped by the user
      */
     public boolean isCanceled() {
