01: /*
02: * Created on Jul 8, 2005
03: */
04: package uk.org.ponder.timeutil;
05:
06: import java.util.Calendar;
07: import java.util.GregorianCalendar;
08:
09: /**
10: * @author Antranig Basman (antranig@caret.cam.ac.uk)
11: *
12: */
13: public class DefaultGregorianFactory implements CalendarFactory {
14: public static DefaultGregorianFactory instance = new DefaultGregorianFactory();
15:
16: public Calendar getCalendar() {
17: return new GregorianCalendar();
18: }
19: }
|