Ignore:
Timestamp:
2013-04-07T23:18:22+02:00 (12 years ago)
Author:
stoecker
Message:

javadoc fixes

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/Plugin.java

    r5241 r5836  
    6969     * Sets the plugin information object for this plugin
    7070     *
    71      * @parma info the plugin information object
     71     * @param info the plugin information object
    7272     */
    7373    public void setPluginInformation(PluginInformation info) {
  • trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java

    r5587 r5836  
    4545     * Creates the download task
    4646     *
    47      * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed
     47     * @param parent the parent component relative to which the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} is displayed
    4848     * @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}
    5050     * @throws IllegalArgumentException thrown if toUpdate is null
    5151     */
     
    6161     * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
    6262     * @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}
    6464     * @throws IllegalArgumentException thrown if toUpdate is null
    6565     */
     
    178178     * Replies true if the task was canceled by the user
    179179     *
    180      * @return
     180     * @return <code>true</code> if the task was stopped by the user
    181181     */
    182182    public boolean isCanceled() {
  • trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java

    r5723 r5836  
    294294     * Load and instantiate the plugin
    295295     *
    296      * @param the plugin class
     296     * @param klass the plugin class
    297297     * @return the instantiated and initialized plugin
    298298     */
  • trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java

    r5723 r5836  
    2525 * in the local plugin repositories.
    2626 *
    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()}
    2828 * and extracts plugin information from three kind of files:
    2929 * <ul>
  • trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java

    r5601 r5836  
    372372    /**
    373373     * Replies true if the task was canceled
    374      * @return
     374     * @return <code>true</code> if the task was stopped by the user
    375375     */
    376376    public boolean isCanceled() {
Note: See TracChangeset for help on using the changeset viewer.