]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
685a001ede43b59ea30b2ae5e13aeab18c112a26
[tmp/jakarta-migration.git] /
1 package org.collectionspace.services.structureddate;
2
3 /**
4  * A deferred date that represents an endpoint of a quarter century.
5  */
6 public abstract class DeferredQuarterCenturyDate extends DeferredCenturyDate {
7         protected int quarter;
8         
9         public DeferredQuarterCenturyDate(int century) {
10                 super(century);
11         }
12
13         public DeferredQuarterCenturyDate(int century, int quarter) {
14                 this(century);
15                 
16                 this.quarter = quarter;
17         }
18 }