(T context)
| 1226 | } |
| 1227 | |
| 1228 | @Override |
| 1229 | public Weekday getMinimum(T context) { |
| 1230 | |
| 1231 | PlainDate date = context.get(CALENDAR_DATE); |
| 1232 | int oldNum = date.getDayOfWeek().getValue(this.element.getModel()); |
| 1233 | |
| 1234 | if (date.getDaysSinceEpochUTC() + 1 - oldNum < PlainDate.axis().getCalendarSystem().getMinimumSinceUTC()) { |
| 1235 | return PlainDate.MIN.getDayOfWeek(); |
| 1236 | } |
| 1237 | |
| 1238 | return this.element.getDefaultMinimum(); |
| 1239 | |
| 1240 | } |
| 1241 | |
| 1242 | @Override |
| 1243 | public Weekday getMaximum(T context) { |
nothing calls this directly
no test coverage detected