Package edu.stanford.bmir.protege.web.shared.usage

Examples of edu.stanford.bmir.protege.web.shared.usage.GetUsageAction


        }
    }

    private void showUsageForEntity(final OWLEntityData entityData) {
        final OWLEntity entity = entityData.getEntity();
        final GetUsageAction action = new GetUsageAction(entity, getProjectId(), Optional.of(usageView.getUsageFilter()));
        DispatchServiceManager.get().execute(action, new AsyncCallback<GetUsageResult>() {
            @Override
            public void onFailure(Throwable caught) {
                MessageBox.alert("There was a problem retrieving the usage for the selected entity");
                setTitle("Error retrieving definition and usage of " + entityData.getBrowserText());
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.shared.usage.GetUsageAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.