Ignore:
Timestamp:
2015-06-20T14:36:00+02:00 (11 years ago)
Author:
Don-vip
Message:

fix many checkstyle violations

File:
1 edited

Legend:

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

    r8390 r8509  
    1616    /**
    1717     * Constructs an {@code OsmApiException} with the specified response code, error header and error body
    18      * @param responseCode The HTTP response code replied by the OSM server. See {@link java.net.HttpURLConnection HttpURLConnection} for predefined HTTP response code values
     18     * @param responseCode The HTTP response code replied by the OSM server.
     19     * See {@link java.net.HttpURLConnection HttpURLConnection} for predefined HTTP response code values
    1920     * @param errorHeader The error header, as transmitted in the {@code Error} field of the HTTP response header
    2021     * @param errorBody The error body, as transmitted in the HTTP response body
     
    3132    /**
    3233     * Constructs an {@code OsmApiException} with the specified response code, error header and error body
    33      * @param responseCode The HTTP response code replied by the OSM server. See {@link java.net.HttpURLConnection HttpURLConnection} for predefined HTTP response code values
     34     * @param responseCode The HTTP response code replied by the OSM server.
     35     * See {@link java.net.HttpURLConnection HttpURLConnection} for predefined HTTP response code values
    3436     * @param errorHeader The error header, as transmitted in the {@code Error} field of the HTTP response header
    3537     * @param errorBody The error body, as transmitted in the HTTP response body
     
    7880    /**
    7981     * Replies the HTTP response code.
    80      * @return The HTTP response code replied by the OSM server. Refer to <a href="http://wiki.openstreetmap.org/wiki/API_v0.6">OSM API</a> to see the list of response codes returned by the API for each call.
     82     * @return The HTTP response code replied by the OSM server. Refer to
     83     * <a href="http://wiki.openstreetmap.org/wiki/API_v0.6">OSM API</a> to see the list of response codes returned by the API for each call.
    8184     */
    8285    public int getResponseCode() {
     
    8689    /**
    8790     * Sets the HTTP response code.
    88      * @param responseCode The HTTP response code replied by the OSM server. See {@link java.net.HttpURLConnection HttpURLConnection} for predefined HTTP response code values
     91     * @param responseCode The HTTP response code replied by the OSM server.
     92     * See {@link java.net.HttpURLConnection HttpURLConnection} for predefined HTTP response code values
    8993     */
    9094    public void setResponseCode(int responseCode) {
     
    175179
    176180    /**
    177      * Sets the complete URL accessed when this error occured. This is distinct from the one set with {@link #setUrl}, which is generally only the base URL of the server.
     181     * Sets the complete URL accessed when this error occured.
     182     * This is distinct from the one set with {@link #setUrl}, which is generally only the base URL of the server.
    178183     * @param url the complete URL accessed when this error occured.
    179184     */
     
    183188
    184189    /**
    185      * Replies the complete URL accessed when this error occured. This is distinct from the one returned by {@link #getUrl}, which is generally only the base URL of the server.
     190     * Replies the complete URL accessed when this error occured.
     191     * This is distinct from the one returned by {@link #getUrl}, which is generally only the base URL of the server.
    186192     * @return the complete URL accessed when this error occured.
    187193     */
Note: See TracChangeset for help on using the changeset viewer.