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

Last change on this file since 518 was 518, checked in by sherbold, 12 years ago
  • initial commit of quest-core-assertions, quest-core-assertions-test, quest-core-coverage, quest-core-coverage-test, quest-core-usageprofiles, and quest-core-usageprofiles-test
  • Property svn:mime-type set to text/plain
File size: 481 bytes
Line 
1package de.ugoe.cs.quest.usageprofiles;
2
3/**
4 * <p>
5 * Models implementing this interface provide a graph representation of
6 * themselves as a {@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.