@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?");
@NotNull(message="comment is never NULL") Comment get(int number)
number
- Comment number@NotNull(message="iterable is never NULL") Iterable<Comment> iterate()
@NotNull(message="comment is never NULL") Comment post(@NotNull(message="text can\'t be NULL") String text) throws IOException
text
- Text of comment to post in Markdown formatIOException
- If there is any I/O problemCopyright © 2012–2014 jcabi.com. All rights reserved.