Experiment.java

Package: coupling/
File: Experiment.java

  1. package coupling;
  2.  
  3. /**
  4.  * An experiment that can be chosen by the agent.
  5.  */
  6. public class Experiment {
  7.  
  8. /**
  9. * The experience's label.
  10. */
  11. private String label;
  12.  
  13. public Experiment(String label){
  14. this.label = label;
  15. }
  16.  
  17. public String getLabel(){
  18. return this.label;
  19. }
  20. }
  21.  

See public discussions about this page or start a new discussion by clicking on the Google+ Share button. Please type the #IDEALMOOCExperiment hashtag in your post: