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

org.semanticweb.owlapi.model.HasSignature Maven / Gradle / Ivy

There is a newer version: 5.5.1
Show newest version
package org.semanticweb.owlapi.model;

import java.util.Set;

/**
 * An interface to an object which has a signature
 * 
 * @author Matthew Horridge, Stanford University, Bio-Medical Informatics
 *         Research Group, Date: 29/07/2013
 */
public interface HasSignature {

    /**
     * Gets the signature of this object.
     * 
     * @return A set of entities that represents the signature of this object.
     *         Not {@code null}. The returned set is a copy.
     */
    Set getSignature();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy