edu.stanford.protege.webprotege.change.description.CreatedObjectProperties Maven / Gradle / Ivy
package edu.stanford.protege.webprotege.change.description;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableSet;
import org.semanticweb.owlapi.model.OWLObjectProperty;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2018-12-10
*/
@AutoValue
public abstract class CreatedObjectProperties extends AbstractCreatedProperties {
@Nonnull
public static CreatedObjectProperties get(@Nonnull ImmutableSet properties,
@Nonnull ImmutableSet parentProperties) {
return new AutoValue_CreatedObjectProperties(properties, parentProperties);
}
@Nonnull
@Override
public String getTypeName() {
return "CreatedObjectProperties";
}
}