Bestimmung der Zeitpunkte von Ereignissen
ulrich
2023-03-23 d20d989f5495492f1258c8313db7c19b429111a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
  }  
}