edu.stanford.protege.webprotege.HasIRIPrefix Maven / Gradle / Ivy
package edu.stanford.protege.webprotege;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 13/08/2013
*
* An interface to an object that can provide an IRI prefix.
*
*/
public interface HasIRIPrefix {
/**
* Gets the IRI prefix.
* @return A string representing the IRI prefix. Not {@code null}.
*/
String getIRIPrefix();
}