source: trunk/CrossPare/src/de/ugoe/cs/cpdp/IParameterizable.java @ 38

Last change on this file since 38 was 2, checked in by sherbold, 10 years ago
  • initial commit
  • Property svn:mime-type set to text/plain
File size: 441 bytes
Line 
1package de.ugoe.cs.cpdp;
2
3/**
4 * Interface that defines that an entity excepts a parameter string. Can be used to configure parts of an experiment. How (and if) this parameter is interpreted depends entirely on the entity.
5 * @author Steffen Herbold
6 *
7 */
8public interface IParameterizable {
9
10        /**
11         * Sets the parameters of an entity.
12         * @param parameters parameters as string
13         */
14        void setParameter(String parameters);
15}
Note: See TracBrowser for help on using the repository browser.