protected CreateAnnotationPropertiesResult createActionResult(ChangeApplicationResult<Set<OWLAnnotationProperty>> changeApplicationResult, CreateAnnotationPropertiesAction action, OWLAPIProject project, ExecutionContext executionContext, EventList<ProjectEvent<?>> eventList) {
Map<OWLAnnotationProperty, String> map = new HashMap<OWLAnnotationProperty, String>();
for(OWLAnnotationProperty result : changeApplicationResult.getSubject().get()) {
map.put(result, project.getRenderingManager().getBrowserText(result));
}
return new CreateAnnotationPropertiesResult(map, project.getProjectId(), action.getParent(), eventList);
}