File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed
src/main/java/de/kah2/zodiac/libZodiac Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change 1313public class DayStorableDataSetPojo implements DayStorableDataSet {
1414
1515 private LocalDate date ;
16-
1716 private RiseSet solarRiseSet ;
1817 private RiseSet lunarRiseSet ;
18+
1919 private double lunarVisibility ;
2020 private double lunarLongitude ;
2121
@@ -71,7 +71,27 @@ public double getLunarLongitude() {
7171 return this .lunarLongitude ;
7272 }
7373
74- public void setDate ( final LocalDate date ) {
74+ protected void setDate ( final LocalDate date ) {
7575 this .date = date ;
7676 }
77+
78+ protected void setSolarRiseSet ( RiseSet solarRiseSet ) {
79+
80+ this .solarRiseSet = solarRiseSet ;
81+ }
82+
83+ protected void setLunarRiseSet ( RiseSet lunarRiseSet ) {
84+
85+ this .lunarRiseSet = lunarRiseSet ;
86+ }
87+
88+ protected void setLunarVisibility ( double lunarVisibility ) {
89+
90+ this .lunarVisibility = lunarVisibility ;
91+ }
92+
93+ protected void setLunarLongitude ( double lunarLongitude ) {
94+
95+ this .lunarLongitude = lunarLongitude ;
96+ }
7797}
You can’t perform that action at this time.
0 commit comments