blob: 78a87b83dc616350c01d0e33371cc3ed7294eca8 [file] [log] [blame]
package edu.uci.ics.asterix.om.base;
public class AMutableDate extends ADate {
public AMutableDate(int year, int month, int day, int timezone) {
super(year, month, day, timezone);
}
public void setValue(int year, int month, int day, int timezone) {
this.year = year;
this.month = month;
this.day = day;
this.timezone = timezone;
}
}