edu.stanford.protege.webprotege.change.description.CreatedAnnotationProperties 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.OWLAnnotationProperty;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2018-12-10
*/
@AutoValue
public abstract class CreatedAnnotationProperties extends AbstractCreatedProperties {
@Nonnull
public static CreatedAnnotationProperties get(@Nonnull ImmutableSet properties,
@Nonnull ImmutableSet parentProperties) {
return new AutoValue_CreatedAnnotationProperties(properties, parentProperties);
}
@Nonnull
@Override
public String getTypeName() {
return "CreatedAnnotationProperties";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy