/*
 * Created on 13-Jul-05
 *
 * To change the template for this generated file go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
package axis.test;

import java.math.BigDecimal;
import java.util.Date;

/**
 * @author 847485604
 *
 * To change the template for this generated type comment go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
public class DateAndDecimal 
{
	
	private BigDecimal decimalValue;
	
	private Date dateValue;

	/**
	 * 
	 */
	public DateAndDecimal() {
		super();
	
	}

	/**
	 * @return
	 */
	public Date getDateValue() {
		return dateValue;
	}

	/**
	 * @return
	 */
	public BigDecimal getDecimalValue() {
		return decimalValue;
	}

	/**
	 * @param dateValue
	 */
	public void setDateValue(Date dateValue) {
		this.dateValue = dateValue;
	}

	/**
	 * @param decimal
	 */
	public void setDecimalValue(BigDecimal decimalValue) {
		this.decimalValue = decimalValue;
	}

}
