source: trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/IDotCompatible.java @ 922

Last change on this file since 922 was 922, checked in by sherbold, 12 years ago
  • renaming of packages from de.ugoe.cs.quest to de.ugoe.cs.autoquest
  • Property svn:mime-type set to text/plain
File size: 509 bytes
Line 
1package de.ugoe.cs.autoquest.usageprofiles;
2
3/**
4 * <p>
5 * Models implementing this interface provide a graph representation of themselves as a
6 * {@link String} with Dot syntax.
7 * </p>
8 *
9 * @author Steffen Herbold
10 * @version 1.0
11 */
12public interface IDotCompatible {
13
14    /**
15     * <p>
16     * Returns a Dot representation of the model.
17     * </p>
18     *
19     * @return string with Dot syntax that describes the model.
20     */
21    public abstract String getDotRepresentation();
22}
Note: See TracBrowser for help on using the repository browser.