You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 5, 2019. It is now read-only.
Curious why the HasStartDate and HasEndDate interfaces were implemented with an _ (underscore) character in the names to differentiate the String setter from the Date setter method.
Since we're in Java, can we just overload this method rather than using names that don't conform with Java method naming standards?
Just curious since I'll gladly send in the correctling Pull Request, but wanted to ensure this was not for some JSO Overlay kung fu. In that case, I'd suggest setStartDateFromString. Thanks.
publicinterfaceHasStartDate {
/** * Set the min date in the component. * @param date: the date format when the calendar will start */voidsetStartDate(Stringdate);
/** * Set the min date in the component. * @param date: the date format when the calendar will start */voidsetStartDate_(Datedate);
}