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