com.vaadin.client.ui.
Class VAbstractCalendarPanel.FocusedDate
- java.lang.Object
-
- java.util.Date
-
- com.vaadin.client.ui.VAbstractCalendarPanel.FocusedDate
-
All Implemented Interfaces:
Enclosing class:
VAbstractCalendarPanel<R extends Enum<R>>
public class VAbstractCalendarPanel.FocusedDate extends Date
Helper class to inform the screen reader that the user changed the selected date. It sets the value of a field that is outside the view, and is defined as a live area. That way the screen reader recognizes the change and reads it to the user.
See Also:
-
-
Constructor Summary
Constructors Constructor Description FocusedDate(int year, int month, int date)
Constructs a date instance that keeps track of the currently selected date within the calendar panel and updates the related text field accordingly if there is one.
-
Method Summary
All Methods Modifier and Type Method Description void
setDate(int date)
Deprecated.
void
setMonth(int month)
Deprecated.
void
setTime(long time)
void
setYear(int year)
Deprecated.
-
Methods inherited from class java.util.Date
after, before, clone, compareTo, equals, from, getDate, getDay, getHours, getMinutes, getMonth, getSeconds, getTime, getTimezoneOffset, getYear, hashCode, parse, setHours, setMinutes, setSeconds, toGMTString, toInstant, toLocaleString, toString, UTC
-
-
-
-
Constructor Detail
-
FocusedDate
public FocusedDate(int year, int month, int date)
Constructs a date instance that keeps track of the currently selected date within the calendar panel and updates the related text field accordingly if there is one.
Parameters:
year
- the year valuemonth
- the month value between 0-11date
- the day of the month value between 1-31See Also:
-
-
Method Detail
-
setDate
@Deprecated public void setDate(int date)
Deprecated.
-
setMonth
@Deprecated public void setMonth(int month)
Deprecated.
-
setYear
@Deprecated public void setYear(int year)
Deprecated.
-
-