Skip to content

Commit

Permalink
Add a condition instead of setting them all in one go
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Dec 27, 2015
1 parent f43ef90 commit 45b184e
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -80,10 +80,10 @@ public interface IMeasurement {
List<IMeasurement> getConditions();

/**
* Sets the list of conditions under which this measurement was made.
* Adds a new conditions under which this measurement was made.
*
* @param conditions the {@link List} of {@link IMeasurement}s.
* @param condition the condition to add
*/
void setConditions(List<IMeasurement> conditions);
void addCondition(IMeasurement condition);

}

0 comments on commit 45b184e

Please sign in to comment.