use of edu.stanford.bmir.protege.web.shared.place.ProjectTagsPlace in project webprotege by protegeproject.
the class EditProjectTagsUIActionHandler method handleEditProjectTags.
public void handleEditProjectTags() {
Place currentPlace = placeController.getWhere();
if (!(currentPlace instanceof HasProjectId)) {
return;
}
ProjectId projectId = ((HasProjectId) currentPlace).getProjectId();
ProjectTagsPlace projectTagsPlace = new ProjectTagsPlace(projectId, Optional.of(currentPlace));
placeController.goTo(projectTagsPlace);
}
Aggregations