Package org.openstreetmap.josm.data.osm
Class ChangesetDiscussionComment
- java.lang.Object
-
- org.openstreetmap.josm.data.osm.ChangesetDiscussionComment
-
public class ChangesetDiscussionComment extends Object
A comment in a public changeset discussion.- Since:
- 7704
-
-
Constructor Summary
Constructors Constructor Description ChangesetDiscussionComment(Instant date, User user)
Constructs a newChangesetDiscussionComment
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Instant
getDate()
Replies date this comment was posted at.String
getText()
Replies comment text.User
getUser()
Replies the user who posted the comment.void
setText(String text)
Sets comment text.String
toString()
-
-
-
Constructor Detail
-
ChangesetDiscussionComment
public ChangesetDiscussionComment(Instant date, User user)
Constructs a newChangesetDiscussionComment
.- Parameters:
date
- date this comment was posted atuser
- the user who posted the comment
-
-