HasIntersections.java
Home
/
src /
main /
java /
de /
uni_stuttgart /
vis /
vowl /
owl2vowl /
model /
entities /
nodes /
HasIntersections.java
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();
}