]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
9557a2bbf21943bb401b37846689028e85be1f0d
[tmp/jakarta-migration.git] /
1 package org.collectionspace.services.structureddate;
2
3 /**
4  * A deferred date that represents an endpoint of a millennium.
5  */
6 public abstract class DeferredMillenniumDate extends DeferredDate {
7         protected int millennium;
8         
9         public DeferredMillenniumDate(int millennium) {
10                 this.millennium = millennium;
11         }
12 }