Ignore:
Timestamp:
07/04/11 15:21:50 (13 years ago)
Author:
sherbold
Message:
  • code documentation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchCore/src/de/ugoe/cs/eventbench/models/IDotCompatible.java

    r25 r101  
    11package de.ugoe.cs.eventbench.models; 
    22 
     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 */ 
    312public 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         */ 
    421        public abstract String getDotRepresentation(); 
    522} 
Note: See TracChangeset for help on using the changeset viewer.