Ignore:
Timestamp:
2012-06-03T16:41:25+02:00 (12 years ago)
Author:
bastiK
Message:

fixed majority of javadoc warnings by replacing "{@see" by "{@link"

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

Legend:

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

    r4310 r5266  
    3030 * Asynchronous task for downloading a collection of plugins.
    3131 *
    32  * When the task is finished {@see #getDownloadedPlugins()} replies the list of downloaded plugins
    33  * and {@see #getFailedPlugins()} replies the list of failed plugins.
     32 * When the task is finished {@link #getDownloadedPlugins()} replies the list of downloaded plugins
     33 * and {@link #getFailedPlugins()} replies the list of failed plugins.
    3434 *
    3535 */
     
    4545     * Creates the download task
    4646     *
    47      * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed
     47     * @param parent the parent component relative to which the {@link 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 {@see PleaseWaitDialog}
     49     * @param title the title to display in the {@link PleaseWaitDialog}
    5050     * @throws IllegalArgumentException thrown if toUpdate is null
    5151     */
     
    5959     * Creates the task
    6060     *
    61      * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
     61     * @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 {@see PleaseWaitDialog}
     63     * @param title the title to display in the {@link PleaseWaitDialog}
    6464     * @throws IllegalArgumentException thrown if toUpdate is null
    6565     */
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r5194 r5266  
    519519     *
    520520     * @param plugins the list of plugins
    521      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     521     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    522522     */
    523523    public static void loadPlugins(Component parent,Collection<PluginInformation> plugins, ProgressMonitor monitor) {
     
    564564
    565565    /**
    566      * Loads plugins from <code>plugins</code> which have the flag {@see PluginInformation#early}
     566     * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early}
    567567     * set to true.
    568568     *
    569569     * @param plugins the collection of plugins
    570      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     570     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    571571     */
    572572    public static void loadEarlyPlugins(Component parent, Collection<PluginInformation> plugins, ProgressMonitor monitor) {
     
    581581
    582582    /**
    583      * Loads plugins from <code>plugins</code> which have the flag {@see PluginInformation#early}
     583     * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early}
    584584     * set to false.
    585585     *
    586586     * @param plugins the collection of plugins
    587      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     587     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    588588     */
    589589    public static void loadLatePlugins(Component parent, Collection<PluginInformation> plugins, ProgressMonitor monitor) {
     
    601601     * plugin lists.
    602602     *
    603      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     603     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    604604     * @return the list of locally available plugin information
    605605     *
     
    661661     * messages.
    662662     *
    663      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     663     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    664664     * @return the set of plugins to load (as set of plugin names)
    665665     */
     
    731731     * @param parent the parent component for message boxes
    732732     * @param plugins the collection of plugins to update. Must not be null.
    733      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     733     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    734734     * @throws IllegalArgumentException thrown if plugins is null
    735735     */
  • trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java

    r4737 r5266  
    2525 * in the local plugin repositories.
    2626 *
    27  * It scans the files in the local plugins repository (see {@see Preferences#getPluginsDirectory()}
     27 * It scans the files in the local plugins repository (see {@link Preferences#getPluginsDirectory()}
    2828 * and extracts plugin information from three kind of files:
    2929 * <ul>
  • trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java

    r4721 r5266  
    7272     * Creates the task
    7373     *
    74      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
     74     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
    7575     * @param sites the collection of download sites. Defaults to the empty collection if null.
    7676     */
Note: See TracChangeset for help on using the changeset viewer.