Result.java

Package: coupling/
File: Result.java

  1. package coupling;
  2.  
  3. /**
  4.  * A result of an experience.
  5.  */
  6. public class Result {
  7.  
  8. /**
  9. * The result's label.
  10. */
  11. private String label;
  12.  
  13. public Result(String label){
  14. this.label = label;
  15. }
  16.  
  17. public String getLabel(){
  18. return this.label;
  19. }
  20.  
  21. }
  22.  

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