org.semanticweb.owlapi.model.HasRange Maven / Gradle / Ivy
package org.semanticweb.owlapi.model;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 18/02/2014
*
* An interface to objects that have a range.
*
*
* @param
* range type
*/
public interface HasRange {
/**
* Gets the range.
*
* @return The range. Not {@code null}.
*/
R getRange();
}