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

org.semanticweb.owlapi.model.HasAnnotations 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 that has annotation.
 * 
 * @author Matthew Horridge, Stanford University, Bio-Medical Informatics
 *         Research Group, Date: 29/07/2013
 */
public interface HasAnnotations {

    /**
     * Gets the annotations on this object.
     * 
     * @return A set of annotations on this object. The set returned will be a
     *         copy, changes will not be reflected to the original set.
     */
    Set getAnnotations();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy