hy!
I have a function, which calculates the eastersunday of a specific year.
i save the date into the gregoriancalendar easter.
now there are some floating holidays adjusting to the eastersunday.
(e.g. 39 days after eastersunday)
how do I calculate the correct date for these holidays?
(when i create a gregoriancalendar that way:
GregorianCalendar afterEaster=new GregorianCalendar(easter.get(easter.YEAR),easter.get(easter.MONTH),easter.get(easter.DATE)+39);
it is wrong, because it is saving 55.April instead of 25.May
how can I solve this problem?
thanks,
lenaz