edu.stanford.protege.webprotege.change.description.RemovedSameAs Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.change.description;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableSet;
import org.semanticweb.owlapi.model.OWLIndividual;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2018-12-10
*/
@AutoValue
public abstract class RemovedSameAs implements StructuredChangeDescription {
public static RemovedSameAs get(@Nonnull ImmutableSet individuals) {
return new AutoValue_RemovedSameAs(individuals);
}
public abstract ImmutableSet getIndividuals();
@Nonnull
@Override
public String getTypeName() {
return "RemovedSameAs";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy