Package edu.stanford.bmir.protege.web.client.dispatch.actions

Examples of edu.stanford.bmir.protege.web.client.dispatch.actions.CreateAnnotationPropertiesResult


    protected CreateAnnotationPropertiesResult createActionResult(ChangeApplicationResult<Set<OWLAnnotationProperty>> changeApplicationResult, CreateAnnotationPropertiesAction action, OWLAPIProject project, ExecutionContext executionContext, EventList<ProjectEvent<?>> eventList) {
        Map<OWLAnnotationProperty, String> map = new HashMap<OWLAnnotationProperty, String>();
        for(OWLAnnotationProperty result : changeApplicationResult.getSubject().get()) {
            map.put(result, project.getRenderingManager().getBrowserText(result));
        }
        return new CreateAnnotationPropertiesResult(map, project.getProjectId(), action.getParent(), eventList);
    }
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.client.dispatch.actions.CreateAnnotationPropertiesResult

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.