Interface AuthorReviewViewController
-
@API(type=NOT_EXTENDABLE, src=PUBLIC) public interface AuthorReviewViewController
The review view presents Track Changes insert and delete highlights and review comment highlights in the Author mode.- Since:
- 17.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addReviewActionsProvider(ReviewActionsProvider actionsProvider)
Add a review actions provider, notified when a review is right clicked.void
removeReviewActionsProvider(ReviewActionsProvider actionsProvider)
Remove a review actions provider.void
setReviewsRenderingInformationProvider(ReviewsRenderingInformationProvider provider)
Set the provider for data that will be rendered in the review panel for a specific highlight.
-
-
-
Method Detail
-
setReviewsRenderingInformationProvider
void setReviewsRenderingInformationProvider(ReviewsRenderingInformationProvider provider)
Set the provider for data that will be rendered in the review panel for a specific highlight.
The review entries are representations of Track Changes insert and delete highlights, review comment highlights and custom review highlights in Author mode.- Parameters:
provider
- The highlights review rendering information provider.- Throws:
java.lang.IllegalArgumentException
- Thrown when a property name is not a valid XML attribute name.
-
addReviewActionsProvider
void addReviewActionsProvider(ReviewActionsProvider actionsProvider)
Add a review actions provider, notified when a review is right clicked.- Parameters:
actionsProvider
- The review actions provider.
-
removeReviewActionsProvider
void removeReviewActionsProvider(ReviewActionsProvider actionsProvider)
Remove a review actions provider.- Parameters:
actionsProvider
- The review actions provider.
-
-