org.semanticweb.owlapi.model.HasSubject Maven / Gradle / Ivy
package org.semanticweb.owlapi.model;
/**
* @author Matthew Horridge, Stanford University, Bio-Medical Informatics
* Research Group, Date: 29/07/2013
* @param
* subject type
*/
public interface HasSubject {
/**
* Gets the subject of this object.
*
* @return The subject. Not {@code null}.
*/
T getSubject();
}