| org.kuali.module.chart.service.DateMakerService
All known Subclasses: org.kuali.module.chart.service.impl.DateMakerServiceImpl,
DateMakerService | public interface DateMakerService (Code) | | This service interface defines methods necessary for copying fiscal year information
|
Method Summary | |
public void | fiscalYearMakers(boolean replaceMode) | public void | fiscalYearMakers(Integer baseYear, boolean replaceMode) use this when you want to start with a specified base year (which does not necessarily correspond to the current fiscal
year). | public void | testRoutine() |
fiscalYearMakers | public void fiscalYearMakers(boolean replaceMode)(Code) | | use this when you want to copy the current fiscal year (as of today's date)
into the coming fiscal year
replaceMode = true overrides what's there in the target year
= false only adds what isn't there, leaving anything existing for
the target year undisturbed
Parameters: replaceMode - |
fiscalYearMakers | public void fiscalYearMakers(Integer baseYear, boolean replaceMode)(Code) | | use this when you want to start with a specified base year (which does not necessarily correspond to the current fiscal
year). this could be used to implement a "budget year", for example = false only adds what isn't there, leaving anything
existing for the target year undisturbed
Parameters: baseYear - Parameters: replaceMode - |
testRoutine | public void testRoutine()(Code) | | |
|
|