Examples of OBOTermCrossProduct


Examples of edu.stanford.bmir.protege.web.shared.obo.OBOTermCrossProduct

        if(!relationshipsField.getValue().isPresent()) {
            return Optional.absent();
        }
        final OWLClassData genus = (OWLClassData) genusField.getValue().get();
        final OBOTermRelationships relationships = new OBOTermRelationships(new HashSet<OBORelationship>(relationshipsField.getValue().get()));
        return Optional.of(new OBOTermCrossProduct(genus, relationships));
    }
View Full Code Here

Examples of edu.stanford.bmir.protege.web.shared.obo.OBOTermCrossProduct

            return;
        }
        if(!editor.getValue().isPresent()) {
            return;
        }
        OBOTermCrossProduct crossProduct = editor.getValue().get();
        getService().setCrossProduct(getProjectId(), (OWLClass) entity, crossProduct, new AsyncCallback<Void>() {
            public void onFailure(Throwable caught) {
                if(caught instanceof NotSignedInException) {
                    MessageBox.alert("You are not signed in.  Changes not saved.  You must be signed in for your changes to be saved.");
                }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.