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