String allowedType= UIUtil.getStringConfigurationProperty(getWidgetConfiguration(), FormConstants.ONT_TYPE, null);
if (allowedType == null) {
return;
}
store.removeAll();
GetIndividualsAction action = new GetIndividualsAction(getProjectId(), DataFactory.getOWLClass(allowedType), Optional.<PageRequest>absent());
DispatchServiceManager.get().execute(action, new AbstractWebProtegeAsyncCallback<GetIndividualsResult>() {
@Override
public void onSuccess(GetIndividualsResult result) {
store.removeAll();
for (OWLNamedIndividualData ind : result.getIndividuals()) {