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

Examples of edu.stanford.bmir.protege.web.shared.search.EntityNameMatchResult


            if(result.isPresent()) {
                Set<OWLEntity> entities = sfp.getEntities(shortForm);
                for(OWLEntity matchingEntity : entities) {
                    Optional<OWLEntityData> match = toOWLEntityData(matchingEntity, entityLookupRequest, rm);
                    if(match.isPresent()) {
                        EntityNameMatchResult resultValue = result.get();
                        matches.add(new OWLEntityDataMatch(match.get(), resultValue));
                    }
                    // BAD
                    if(matches.size() >= 1000) {
                        break;
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.shared.search.EntityNameMatchResult

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.