source: trunk/quest-core-events/src/de/ugoe/cs/quest/models/IDotCompatible.java @ 432

Last change on this file since 432 was 432, checked in by sherbold, 12 years ago
  • renamed packages to fir QUEST project structure
File size: 474 bytes
RevLine 
[432]1package de.ugoe.cs.quest.models;
[1]2
[101]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 */
[25]12public interface IDotCompatible {
[101]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         */
[25]21        public abstract String getDotRepresentation();
[1]22}
Note: See TracBrowser for help on using the repository browser.