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/io/auth
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgent.java

    r4690 r5266  
    1111 * A CredentialsAgent manages two credentials:
    1212 * <ul>
    13  *   <li>the credential for {@see RequestorType#SERVER} which is equal to the OSM API credentials
     13 *   <li>the credential for {@link RequestorType#SERVER} which is equal to the OSM API credentials
    1414 *   in JOSM</li>
    15  *   <li>the credential for {@see RequestorType#PROXY} which is equal to the credentials for an
     15 *   <li>the credential for {@link RequestorType#PROXY} which is equal to the credentials for an
    1616 *   optional HTTP proxy server a user may use</li>
    1717 *  </ul>
     
    2424     * Looks up the credentials for a given type.
    2525     *
    26      * @param the type of service. {@see RequestorType#SERVER} for the OSM API server, {@see RequestorType#PROXY}
     26     * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
    2727     * for a proxy server
    2828     * @return the credentials
     
    3434     * Saves the credentials in <code>credentials</code> for the given service type.
    3535     *
    36      * @param the type of service. {@see RequestorType#SERVER} for the OSM API server, {@see RequestorType#PROXY}
     36     * @param the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
    3737     * for a proxy server
    3838     * @param credentials the credentials
     
    4343    /**
    4444     *
    45      * @param requestorType  the type of service. {@see RequestorType#SERVER} for the OSM API server, {@see RequestorType#PROXY}
     45     * @param requestorType  the type of service. {@link RequestorType#SERVER} for the OSM API server, {@link RequestorType#PROXY}
    4646     * for a proxy server
    4747     * @param noSuccessWithLastResponse true, if the last request with the supplied credentials failed; false otherwise.
  • trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentResponse.java

    r4310 r5266  
    33
    44/**
    5  * CredentialsAgentResponse represents the response from {@see CredentialsAgent#getCredentials(java.net.Authenticator.RequestorType, boolean)}.
     5 * CredentialsAgentResponse represents the response from {@link CredentialsAgent#getCredentials(java.net.Authenticator.RequestorType, boolean)}.
    66 *
    77 * The response consists of the username and the password the requested credentials consists of.
    88 * In addition, it provides information whether authentication was canceled by the user, i.e.
    9  * because he or she canceled a username/password dialog (see {@see #isCanceled()}.
     9 * because he or she canceled a username/password dialog (see {@link #isCanceled()}.
    1010 *
    1111 */
  • trunk/src/org/openstreetmap/josm/io/auth/CredentialsManager.java

    r5111 r5266  
    1414 * CredentialManager is a factory for the single credential agent used.
    1515 *
    16  * Currently, it defaults to replying an instance of {@see JosmPreferencesCredentialAgent}.
     16 * Currently, it defaults to replying an instance of {@link JosmPreferencesCredentialAgent}.
    1717 *
    1818 */
  • trunk/src/org/openstreetmap/josm/io/auth/DefaultAuthenticator.java

    r4690 r5266  
    1212 * This is the default authenticator used in JOSM. It delegates lookup of credentials
    1313 * for the OSM API and an optional proxy server to the currently configured
    14  * {@see CredentialsManager}.
     14 * {@link CredentialsManager}.
    1515 *
    1616 */
Note: See TracChangeset for help on using the changeset viewer.