edu.stanford.protege.webprotege.index.impl.SubAnnotationPropertyAxiomsBySuperPropertyIndexImpl Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.index.impl;
import com.google.common.collect.ImmutableList;
import edu.stanford.protege.webprotege.change.OntologyChange;
import edu.stanford.protege.webprotege.index.SubAnnotationPropertyAxiomsBySuperPropertyIndex;
import edu.stanford.protege.webprotege.inject.ProjectSingleton;
import org.semanticweb.owlapi.model.OWLAnnotationProperty;
import org.semanticweb.owlapi.model.OWLOntologyID;
import org.semanticweb.owlapi.model.OWLSubAnnotationPropertyOfAxiom;
import javax.annotation.Nonnull;
import javax.inject.Inject;
import java.util.stream.Stream;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2019-08-17
*/
@ProjectSingleton
public class SubAnnotationPropertyAxiomsBySuperPropertyIndexImpl implements SubAnnotationPropertyAxiomsBySuperPropertyIndex, UpdatableIndex {
@Nonnull
private final AxiomMultimapIndex index;
@Inject
public SubAnnotationPropertyAxiomsBySuperPropertyIndexImpl() {
index = AxiomMultimapIndex.create(OWLSubAnnotationPropertyOfAxiom.class,
OWLSubAnnotationPropertyOfAxiom::getSuperProperty);
}
@Nonnull
@Override
public Stream getAxiomsForSuperProperty(@Nonnull OWLAnnotationProperty property,
@Nonnull OWLOntologyID ontologyId) {
checkNotNull(ontologyId);
checkNotNull(property);
return index.getAxioms(property, ontologyId);
}
@Override
public void applyChanges(@Nonnull ImmutableList changes) {
index.applyChanges(changes);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy