package demo3;
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 Integer comboValue;
private Float numericValue;
private BigDecimal currencyValue;
// private Boolean checkValue;
private String checkValue;
private Boolean radioButtonValue;
private Date dateValue;
private String lookupValue;
private String descrLookupValue;
private String button;
private Integer intValue;
private String multiLineTextValue;
private java.math.BigDecimal formattedTextValue;
// private String formattedTextValue;
private Integer year;
public TestVO() {
}
public Integer getComboValue() {
return comboValue;
}
public BigDecimal getCurrencyValue() {
return currencyValue;
}
public Date getDateValue() {
return dateValue;
}
public Float 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(Float numericValue) {
this.numericValue = numericValue;
}
public void setDateValue(Date dateValue) {
this.dateValue = dateValue;
}
public void setCurrencyValue(BigDecimal currencyValue) {
this.currencyValue = currencyValue;
}
public void setComboValue(Integer comboValue) {
this.comboValue = comboValue;
}
// public void setCheckValue(Boolean checkValue) {
// this.checkValue = checkValue;
// }
// public Boolean getCheckValue() {
// return checkValue;
// }
public void setCheckValue(String checkValue) {
this.checkValue = checkValue;
}
public String getCheckValue() {
return 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 getButton() {
return button;
}
public void setButton(String button) {
this.button = button;
}
public java.math.BigDecimal getFormattedTextValue() {
return formattedTextValue;
}
public void setFormattedTextValue(java.math.BigDecimal formattedTextValue) {
this.formattedTextValue = formattedTextValue;
}
public Integer getIntValue() {
return intValue;
}
public void setIntValue(Integer intValue) {
this.intValue = intValue;
}
public String getMultiLineTextValue() {
return multiLineTextValue;
}
public void setMultiLineTextValue(String multiLineTextValue) {
this.multiLineTextValue = multiLineTextValue;
}
public Integer getYear() {
return year;
}
public void setYear(Integer year) {
this.year = year;
}
// public String getFormattedTextValue() {
// return formattedTextValue;
// }
// public void setFormattedTextValue(String formattedTextValue) {
// this.formattedTextValue = formattedTextValue;
// }
}