HasIntersections.java

12 lines | 249 B Blame History Raw Download
package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes;

import org.semanticweb.owlapi.model.IRI;

import java.util.Set;

public interface HasIntersections {
	void addElementToIntersection(IRI iri);

	Set<IRI> getElementOfIntersection();
}