edu.stanford.protege.webprotege.change.description.UndeprecatedEntities 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.IRI;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2018-12-10
*/
@AutoValue
public abstract class UndeprecatedEntities implements StructuredChangeDescription {
public static UndeprecatedEntities get(@Nonnull ImmutableSet entities) {
return new AutoValue_UndeprecatedEntities(entities);
}
@Nonnull
public abstract ImmutableSet getEntities();
@Nonnull
@Override
public String getTypeName() {
return "UndeprecatedEntities";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy