use of edu.stanford.bmir.protege.web.shared.tag.GetEntityTagsResult in project webprotege by protegeproject.
the class GetEntityTagsActionHandler method execute.
@Nonnull
@Override
public GetEntityTagsResult execute(@Nonnull GetEntityTagsAction action, @Nonnull ExecutionContext executionContext) {
ProjectId projectId = action.getProjectId();
OWLEntity entity = action.getEntity();
return new GetEntityTagsResult(tagsManager.getTags(entity), tagsManager.getProjectTags());
}
Aggregations