public interface DateListProvider
List<Date> getDateList(javax.faces.context.FacesContext context, Calendar base, Date rangeStart, Date rangeEnd)
List
of individual
Date
objects. This is often used to list the dates
which will be rendered as disabled in a datePicker component. The Date
s must be in the context of the given base Calendar
.context
- The Faces contextbase
- The base Calendar
object from which
the start and end dates are taken. All returned
Date
objects should be gotten from this
base by a series of set
and
getTime
calls.rangeStart
- The start of the range for which dates are being
requested.rangeEnd
- The end of the range for which dates are being requested.Copyright © 2001-2016 The Apache Software Foundation. All Rights Reserved.