package de.ugoe.cs.quest.usageprofiles; /** *

* Models implementing this interface provide a graph representation of * themselves as a {@link String} with Dot syntax. *

* * @author Steffen Herbold * @version 1.0 */ public interface IDotCompatible { /** *

* Returns a Dot representation of the model. *

* * @return string with Dot syntax that describes the model. */ public abstract String getDotRepresentation(); }