package cz.muni.fi.bronchus.questions; /** * Outcomes Feedback is for the store of the condition and his feedback for * the outcomes processing algorithm of the test * @author Tomáš Udržal */ public class OutcomesFeedback { /** * Reprezents logical condition */ private String condition; /** * Reprezents feedback for the condition */ private String feedback; /** Creates a new instance of OutcomesFeedback */ public OutcomesFeedback() { condition=feedback=""; } /** * Setter method for the condition * @param x condition to be set */ public void setCondition(String x) { condition=x; } /** * Getter method for the condition * @return condition */ public String getCondition() { return condition; } /** * Setter method for the feedback * @param x feedback to be set */ public void setFeedback(String x) { feedback=x; } /** * Getter method for the feedback * @return feedback */ public String getFeedback() { return feedback; } }