HasEquivalents.java

14 lines | 236 B Blame History Raw Download
package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities;

import org.semanticweb.owlapi.model.IRI;

import java.util.Set;

public interface HasEquivalents {

	void addEquivalentElement(IRI iri);

	Set<IRI> getEquivalentElements();

}