@Override
protected AddNoteToEntityResult execute(AddNoteToEntityAction action, OWLAPIProject project, ExecutionContext executionContext) {
EventTag tag = project.getEventManager().getCurrentTag();
Note note = project.getNotesManager().addNoteToEntity(action.getEntity(), action.getNoteContent(), executionContext.getUserId());
return new AddNoteToEntityResult(project.getEventManager().getEventsFromTag(tag), note);
}