Interface CommentSource
- 
- All Superinterfaces:
- VelocityDataSource
 
 public interface CommentSource extends VelocityDataSource Contains methods to fetch information regarding comments.These methods are exposed to Velocity reports on the commentSourceobject within the global context. Example:$commentSource.getCommentCount(1, 1)
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCommentCount(java.lang.Integer scopeId, java.lang.Integer refId)java.util.List<Comment>getComments(java.lang.Integer documentId)java.util.List<Comment>getCommentsForItem(java.lang.Integer itemId)intgetRevisionItemCommentCount(java.lang.Integer revisionItemId, boolean thisRevisionOnly)
 
- 
- 
- 
Method Detail- 
getCommentsjava.util.List<Comment> getComments(java.lang.Integer documentId) 
 - 
getCommentCountint getCommentCount(java.lang.Integer scopeId, java.lang.Integer refId)
 - 
getRevisionItemCommentCountint getRevisionItemCommentCount(java.lang.Integer revisionItemId, boolean thisRevisionOnly)
 - 
getCommentsForItemjava.util.List<Comment> getCommentsForItem(java.lang.Integer itemId) 
 
- 
 
-