Last change
on this file since 25 was
2,
checked in by sherbold, 10 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
441 bytes
|
Line | |
---|
1 | package 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 | */
|
---|
8 | public 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.