Bestimmung der Zeitpunkte von Ereignissen
ulrich
2023-03-23 d20d989f5495492f1258c8313db7c19b429111a3
commit | author | age
d20d98 1 package de.uhilger.zeitrechnung;
U 2
3 /**
4  *
5  * @author Ulrich Hilger
6  */
7 public class ChinesischesDatum extends Datum {
8   
9   private long zyklus;
10   private boolean schaltmonat;
11   
12   public ChinesischesDatum() {
13     super();
14   }
15   
16   public ChinesischesDatum(long zyklus, long jahr, int monat, boolean schaltmonat, int tag) {
17     super(jahr, monat, tag);
18     this.zyklus = zyklus;
19     this.schaltmonat = schaltmonat;
20   }
21
22   public long getZyklus() {
23     return zyklus;
24   }
25
26   public void setZyklus(long zyklus) {
27     this.zyklus = zyklus;
28   }
29
30   public boolean isSchaltmonat() {
31     return schaltmonat;
32   }
33
34   public void setSchaltmonat(boolean schaltmonat) {
35     this.schaltmonat = schaltmonat;
36   }  
37 }