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

Last change on this file since 766 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
  • Property svn:mime-type set to text/plain
File size: 505 bytes
Line 
1package de.ugoe.cs.quest.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.