Ignore:
Timestamp:
2017-07-30T06:19:58+02:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle - SingleLineJavadocCheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/notes/Note.java

    r11878 r12540  
    7979    }
    8080
    81     /** @return The unique OSM ID of this note */
     81    /**
     82     * Returns the unique OSM ID of this note.
     83     * @return The unique OSM ID of this note
     84     */
    8285    public long getId() {
    8386        return id;
     
    9295    }
    9396
    94     /** @return The geographic location of the note */
     97    /**
     98     * Returns the geographic location of the note.
     99     * @return The geographic location of the note
     100     */
    95101    public LatLon getLatLon() {
    96102        return latLon;
    97103    }
    98104
    99     /** @return Date that this note was submitted */
     105    /**
     106     * Returns the date at which this note was submitted.
     107     * @return Date that this note was submitted
     108     */
    100109    public Date getCreatedAt() {
    101110        return DateUtils.cloneDate(createdAt);
     
    110119    }
    111120
    112     /** @return Date that this note was closed. Null if it is still open. */
     121    /**
     122     * Returns the date at which this note was closed.
     123     * @return Date that this note was closed. Null if it is still open.
     124     */
    113125    public Date getClosedAt() {
    114126        return DateUtils.cloneDate(closedAt);
     
    123135    }
    124136
    125     /** @return The open or closed state of this note */
     137    /**
     138     * Returns the open or closed state of this note.
     139     * @return The open or closed state of this note
     140     */
    126141    public State getState() {
    127142        return state;
     
    136151    }
    137152
    138     /** @return An ordered list of comments associated with this note */
     153    /**
     154     * Returns the list of comments associated with this note.
     155     * @return An ordered list of comments associated with this note
     156     */
    139157    public List<NoteComment> getComments() {
    140158        return comments;
Note: See TracChangeset for help on using the changeset viewer.