package demo5.java; import org.openswing.swing.message.receive.java.ValueObjectImpl; import java.math.BigDecimal; import java.sql.Date; /** * <p>Title: OpenSwing Framework</p> * <p>Description: Test Value Object.</p> * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p> * <p> </p> * @author Mauro Carniel * @version 1.0 */ public class TestVO extends ValueObjectImpl { private String stringValue; private String comboValue; private BigDecimal numericValue; private BigDecimal currencyValue; private Boolean checkValue; private Boolean radioButtonValue; private Date dateValue; private String lookupValue; private String descrLookupValue; private String taValue; public TestVO() { } public Boolean getCheckValue() { return checkValue; } public String getComboValue() { return comboValue; } public BigDecimal getCurrencyValue() { return currencyValue; } public Date getDateValue() { return dateValue; } public BigDecimal getNumericValue() { return numericValue; } public Boolean getRadioButtonValue() { return radioButtonValue; } public String getStringValue() { return stringValue; } public void setStringValue(String stringValue) { this.stringValue = stringValue; } public void setRadioButtonValue(Boolean radioButtonValue) { this.radioButtonValue = radioButtonValue; } public void setNumericValue(BigDecimal numericValue) { this.numericValue = numericValue; } public void setDateValue(Date dateValue) { this.dateValue = dateValue; } public void setCurrencyValue(BigDecimal currencyValue) { this.currencyValue = currencyValue; } public void setComboValue(String comboValue) { this.comboValue = comboValue; } public void setCheckValue(Boolean checkValue) { this.checkValue = checkValue; } public String getLookupValue() { return lookupValue; } public void setLookupValue(String lookupValue) { this.lookupValue = lookupValue; } public String getDescrLookupValue() { return descrLookupValue; } public void setDescrLookupValue(String descrLookupValue) { this.descrLookupValue = descrLookupValue; } public String getTaValue() { return taValue; } public void setTaValue(String taValue) { this.taValue = taValue; } }