public interface IAnnotationManagerNotes extends IAnnotationManager
IAnnotationManager
to manage the review/marked status of Annotations.
An implementation of this class can be obtained from a PDFNotesBean with
PDFNotesBean.getAnnotationManagerNotes()
.
Modifier and Type | Method and Description |
---|---|
void |
setMarked(Annotation annot,
boolean marked,
PDFPage parentPage)
Set the marked status of an Annotation.
|
void |
setReviewStatus(Annotation annot,
String status,
PDFPage parentPage)
Set the review status of an Annotation.
|
addComponentToSelection, addSelectionListener, clearSelection, deselectAnnotationComponent, getSelectedComponents, isSelected, selectAnnotationComponent, selectAnnotationComponents
void setMarked(Annotation annot, boolean marked, PDFPage parentPage)
annot
- The Annotation to update.marked
- True to set the annotation as marked, false to set as unmarked.page
- The annot's parent page.void setReviewStatus(Annotation annot, String status, PDFPage parentPage)
AnnotationReviewStatus
.annot
- The Annotation to update.status
- The new review status.page
- The annot's parent page.