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

Examples of edu.stanford.bmir.protege.web.shared.frame.PropertyValueDescriptor


        }
        else if (propertyValue.getValue() instanceof IRI) {
            valueRendering = new IRIData((IRI) propertyValue.getValue());
        }
        if(propRendering.isPresent()) {
            return Optional.of(new PropertyValueDescriptor((OWLPropertyData) propRendering.get(), valueRendering, propertyValue.getState(), propertyValue.isValueMostSpecific(), Collections.<OWLAxiom>emptySet()));
        }
        else {
            return Optional.absent();
        }
//        addRow(propRendering.isPresent() ? Optional.<OWLPrimitiveData>of(propRendering.get()) : Optional.<OWLPrimitiveData>absent(), Optional.of(valueRendering), propertyValue.getState(), propertyValue.isValueMostSpecific());
View Full Code Here


                if(selectedSuggestion.isPresent()) {
                    if(selectedSuggestion.get() instanceof FreshEntitySuggestion) {
                        augmentingAxioms.addAll(((FreshEntitySuggestion) selectedSuggestion.get()).getAugmentingAxioms());
                    }
                }
                return Optional.of(new PropertyValueDescriptor((OWLPropertyData) propertyField.getValue().get(),
                        valueField.getValue().get(), propertyValueState, false, augmentingAxioms));
            }
            else {
                return Optional.absent();
            }
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.shared.frame.PropertyValueDescriptor

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.