@Immutable
public interface Comments
Use this class to get access to all comments in an issue, for example:
issue = // ... get it somewhere
Comments comments = issue.comments();
Comment comment = comments.post("Hi, how are you?");Issue issue()
Comment get(int number)
number - Comment numberIterable<Comment> iterate(Date since)
since - Since when? Just give new Date(0) if you want
all comments.Comment post(String text) throws IOException
text - Text of comment to post in Markdown formatIOException - If there is any I/O problemCopyright © 2012–2018 jcabi.com. All rights reserved.