public class Affix { private String analysis; private String affix; private String strip; private String condition; /** * */ public Affix() { } /** * @param analysis * @param affix */ public Affix(String analysis, String affix) { this.analysis = analysis; this.affix = affix; } /** * @return the affix */ public String getAffix() { return affix; } /** * @param affix the affix to set */ public void setAffix(String affix) { this.affix = affix; } /** * @return the analysis */ public String getAnalysis() { return analysis; } /** * @param analysis the analysis to set */ public void setAnalysis(String analysis) { this.analysis = analysis; } /** * @return the condition */ public String getCondition() { return condition; } /** * @param condition the condition to set */ public void setCondition(String condition) { this.condition = condition; } /** * @return the strip */ public String getStrip() { return strip; } /** * @param strip the strip to set */ public void setStrip(String strip) { this.strip = strip; } }