Class ReviewsRenderingInformationProvider
- java.lang.Object
-
- ro.sync.ecss.extensions.api.review.ReviewsRenderingInformationProvider
-
@API(type=EXTENDABLE, src=PUBLIC) public abstract class ReviewsRenderingInformationProvider extends java.lang.Object
Provider for data that will be rendered in the review view, in Author mode for highlights.- Since:
- 17.1
-
-
Constructor Summary
Constructors Constructor Description ReviewsRenderingInformationProvider()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract AuthorReviewRenderingInformation
getReviewRenderingInformation(AuthorPersistentHighlight highlight)
Get the review rendering information associated with a highlight.
-
-
-
Method Detail
-
getReviewRenderingInformation
public abstract AuthorReviewRenderingInformation getReviewRenderingInformation(AuthorPersistentHighlight highlight)
Get the review rendering information associated with a highlight.
The review entries are representations of Track Changes insert and delete highlights and review comment highlights in Author mode.- Parameters:
highlight
- The Author persistent highlight. You can use theAuthorPersistentHighlight.getType()
method to obtain its type.- Returns:
- The review rendering information associated with a persistent highlight.
-
-