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