01: /*
02: * Created on 12-Jul-05
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.ontoware.semversion;
08:
09: import java.util.Calendar;
10: import java.util.GregorianCalendar;
11:
12: import org.ontoware.semversion.impl.TimeInterval;
13:
14: /**
15: * @author careng
16: *
17: */
18: public class TransactionTime extends TimeInterval {
19: /**
20: * Infinite value Until Changed
21: */
22: public static final Calendar FOREVER = new GregorianCalendar(3000,
23: 0, 0);
24:
25: public TransactionTime(Calendar start, Calendar end) {
26: super(start, end);
27: }
28:
29: }
|