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"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/ExceptionDialogUtil.java

    r4540 r5266  
    9191
    9292    /**
    93      * Explains a {@see SecurityException} which has caused an {@see OsmTransferException}.
     93     * Explains a {@link SecurityException} which has caused an {@link OsmTransferException}.
    9494     * This is most likely happening when user tries to access the OSM API from within an
    9595     * applet which wasn't loaded from the API server.
     
    109109
    110110    /**
    111      * Explains a {@see SocketException} which has caused an {@see OsmTransferException}.
     111     * Explains a {@link SocketException} which has caused an {@link OsmTransferException}.
    112112     * This is most likely because there's not connection to the Internet or because
    113113     * the remote server is not reachable.
     
    127127
    128128    /**
    129      * Explains a {@see IOException} which has caused an {@see OsmTransferException}.
     129     * Explains a {@link IOException} which has caused an {@link OsmTransferException}.
    130130     * This is most likely happening when the communication with the remote server is
    131131     * interrupted for any reason.
     
    145145
    146146    /**
    147      * Explains a {@see IllegalDataException} which has caused an {@see OsmTransferException}.
     147     * Explains a {@link IllegalDataException} which has caused an {@link OsmTransferException}.
    148148     * This is most likely happening when JOSM tries to load data in in an unsupported format.
    149149     *
     
    162162
    163163    /**
    164      * Explains a {@see InvocationTargetException }
     164     * Explains a {@link InvocationTargetException }
    165165     *
    166166     * @param e the exception
     
    178178
    179179    /**
    180      * Explains a {@see OsmApiException} which was thrown because of an internal server
     180     * Explains a {@link OsmApiException} which was thrown because of an internal server
    181181     * error in the OSM API server.
    182182     *
     
    195195
    196196    /**
    197      * Explains a {@see OsmApiException} which was thrown because of a bad
     197     * Explains a {@link OsmApiException} which was thrown because of a bad
    198198     * request
    199199     *
     
    211211
    212212    /**
    213      * Explains a {@see OsmApiException} which was thrown because a resource wasn't found
     213     * Explains a {@link OsmApiException} which was thrown because a resource wasn't found
    214214     * on the server
    215215     *
     
    227227
    228228    /**
    229      * Explains a {@see OsmApiException} which was thrown because of a conflict
     229     * Explains a {@link OsmApiException} which was thrown because of a conflict
    230230     *
    231231     * @param e the exception
     
    242242
    243243    /**
    244      * Explains a {@see OsmApiException} which was thrown because the authentication at
     244     * Explains a {@link OsmApiException} which was thrown because the authentication at
    245245     * the OSM server failed
    246246     *
     
    266266
    267267    /**
    268      * Explains a {@see OsmApiException} which was thrown because accessing a protected
     268     * Explains a {@link OsmApiException} which was thrown because accessing a protected
    269269     * resource was forbidden.
    270270     *
     
    283283
    284284    /**
    285      * Explains a {@see OsmApiException} which was thrown because of a
     285     * Explains a {@link OsmApiException} which was thrown because of a
    286286     * client timeout (HTTP 408)
    287287     *
     
    299299
    300300    /**
    301      * Explains a {@see OsmApiException} which was thrown because of a
     301     * Explains a {@link OsmApiException} which was thrown because of a
    302302     * bandwidth limit (HTTP 509)
    303303     *
     
    315315
    316316    /**
    317      * Explains a {@see OsmApiException} with a generic error
     317     * Explains a {@link OsmApiException} with a generic error
    318318     * message.
    319319     *
     
    331331
    332332    /**
    333      * Explains a {@see OsmApiException} which was thrown because accessing a protected
     333     * Explains a {@link OsmApiException} which was thrown because accessing a protected
    334334     * resource was forbidden.
    335335     *
     
    347347
    348348    /**
    349      * Explains a {@see UnknownHostException} which has caused an {@see OsmTransferException}.
     349     * Explains a {@link UnknownHostException} which has caused an {@link OsmTransferException}.
    350350     * This is most likely happening when there is an error in the API URL or when
    351351     * local DNS services are not working.
     
    387387
    388388    /**
    389      * Explains an {@see OsmTransferException} to the user.
    390      *
    391      * @param e the {@see OsmTransferException}
     389     * Explains an {@link OsmTransferException} to the user.
     390     *
     391     * @param e the {@link OsmTransferException}
    392392     */
    393393    public static void explainOsmTransferException(OsmTransferException e) {
     
    470470    /**
    471471     * explains the case of an error due to a delete request on an already deleted
    472      * {@see OsmPrimitive}, i.e. a HTTP response code 410, where we don't know which
    473      * {@see OsmPrimitive} is causing the error.
     472     * {@link OsmPrimitive}, i.e. a HTTP response code 410, where we don't know which
     473     * {@link OsmPrimitive} is causing the error.
    474474     *
    475475     * @param e the exception
     
    486486
    487487    /**
    488      * Explains an {@see Exception} to the user.
    489      *
    490      * @param e the {@see Exception}
     488     * Explains an {@link Exception} to the user.
     489     *
     490     * @param e the {@link Exception}
    491491     */
    492492    public static void explainException(Exception e) {
Note: See TracChangeset for help on using the changeset viewer.