Interaction.java

Package: coupling/interaction/
File: Interaction.java

  1. package coupling.interaction;
  2.  
  3. import coupling.Experiment;
  4. import coupling.Result;
  5.  
  6. public interface Interaction{
  7.  
  8. /**
  9. * @return The interaction's label
  10. */
  11. public String getLabel();
  12.  
  13. /**
  14. * @return The interaction's experience
  15. */
  16. public Experiment getExperience();
  17.  
  18. /**
  19. * @return The interaction's result
  20. */
  21. public Result getResult();
  22.  
  23. /**
  24. * @param experience: The interaction's experience.
  25. */
  26. public void setExperience(Experiment experience) ;
  27.  
  28. /**
  29. * @param result: The interaction's result.
  30. */
  31. public void setResult(Result result);
  32.  
  33. }
  34.  

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