You are on page 1of 1

/*

* To change this template, choose Tools | Templates


* and open the template in the editor.
*/
package com.bhagin.pocs.misc;

import java.util.Calendar;

/**
* @date 10 Mar, 2011
* @author rohitmp
*/
public class Period {

Period(Calendar startDate, Calendar endDate) {


this.startDate = startDate;
this.endDate = endDate;
}
private Calendar startDate;
private Calendar endDate;

/**
* @return the startDate
*/
public Calendar getStartDate() {
return startDate;
}

/**
* @param startDate the startDate to set
*/
public void setStartDate(Calendar startDate) {
this.startDate = startDate;
}

/**
* @return the endDate
*/
public Calendar getEndDate() {
return endDate;
}

/**
* @param endDate the endDate to set
*/
public void setEndDate(Calendar endDate) {
this.endDate = endDate;
}
} //end of class Period

You might also like