package de.uhilger.zeitrechnung; /** * * @author Ulrich Hilger */ public class ChinesischesDatum extends Datum { private long zyklus; private boolean schaltmonat; public ChinesischesDatum() { super(); } public ChinesischesDatum(long zyklus, long jahr, int monat, boolean schaltmonat, int tag) { super(jahr, monat, tag); this.zyklus = zyklus; this.schaltmonat = schaltmonat; } public long getZyklus() { return zyklus; } public void setZyklus(long zyklus) { this.zyklus = zyklus; } public boolean isSchaltmonat() { return schaltmonat; } public void setSchaltmonat(boolean schaltmonat) { this.schaltmonat = schaltmonat; } }