All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.protege.webprotege.change.description.AbstractMovedProperties Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.change.description;

import com.google.common.collect.ImmutableSet;
import org.semanticweb.owlapi.model.OWLProperty;

import javax.annotation.Nonnull;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2018-12-10
 */
public abstract class AbstractMovedProperties implements StructuredChangeDescription {

    @Nonnull
    public abstract ImmutableSet getProperties();

    @Nonnull
    public abstract ImmutableSet getFrom();

    @Nonnull
    public abstract OWLProperty getTo();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy