Delete Annotations
To remove an annotation from a document.
CPDFDocument document = readerView.getPDFDocument();
CPDFPage page = document.pageAtIndex(0);
CPDFAnnotation annotation = page.getAnnotations().get(0);
page.deleteAnnotation(annotation);