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

checkstyle - SingleLineJavadocCheck

File:
1 edited

Legend:

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

    r11878 r12540  
    5858    }
    5959
    60     /** @return Plain text of user's comment */
     60    /**
     61     * Returns Plain text of user's comment.
     62     * @return Plain text of user's comment
     63     */
    6164    public String getText() {
    6265        return text;
    6366    }
    6467
    65     /** @return JOSM's User object for the user who made this comment */
     68    /**
     69     * Returns the user who made this comment.
     70     * @return JOSM's User object for the user who made this comment
     71     */
    6672    public User getUser() {
    6773        return user;
    6874    }
    6975
    70     /** @return The time at which this comment was created */
     76    /**
     77     * Returns the time at which this comment was created.
     78     * @return The time at which this comment was created
     79     */
    7180    public Date getCommentTimestamp() {
    7281        return DateUtils.cloneDate(commentTimestamp);
    7382    }
    7483
    75     /** @return the action associated with this note */
     84    /**
     85     * Returns the action associated with this note.
     86     * @return the action associated with this note
     87     */
    7688    public Action getNoteAction() {
    7789        return action;
     
    8698    }
    8799
    88     /** @return true if this is a new comment/action and needs to be uploaded to the API */
     100    /**
     101     * Determines if this is a new comment/action and needs to be uploaded to the API
     102     * @return true if this is a new comment/action and needs to be uploaded to the API
     103     */
    89104    public boolean isNew() {
    90105        return isNew;
Note: See TracChangeset for help on using the changeset viewer.