if (annotationModel != null)
return annotationModel;
if (element instanceof IStorageEditorInput) {
IStorageEditorInput input = (IStorageEditorInput) element;
try {
return new StorageMarkerAnnotationModel(input.getStorage());
} catch (CoreException e) {
throw new RuntimeException(e);
}
}
return null;