*/
PdfDirectObject annotationObject = getBaseDataObject().get(PdfName.Annotation);
if(annotationObject == null)
{
annotationObject = getBaseDataObject().get(PdfName.T);
throw new NotImplementedException("No by-title movie annotation support currently: we have to implement a hook to the page of the referenced movie to get it from its annotations collection.");
}
return new Movie(annotationObject, getContainer());
}