Package org.jdesktop.swingx.plaf.basic
Class BasicMonthViewUI.RenderingHandler
java.lang.Object
org.jdesktop.swingx.plaf.basic.BasicMonthViewUI.RenderingHandler
- All Implemented Interfaces:
CalendarRenderingHandler
- Enclosing class:
- BasicMonthViewUI
Empty subclass for backward compatibility. The original implementation was
extracted as standalone class and renamed to BasicCalendarRenderingHandler.
This will be available for extension by LAF providers until all collaborators in the new rendering pipeline are ready for public exposure.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected StringValuecreateDayStringValue(Locale locale) Creates and returns a StringValue used for rendering days in a month.protected StringValuecreateMonthHeaderStringValue(Locale locale) Creates and returns a StringValue used for rendering the title of a month box.protected StringValuecreateWeekOfYearStringValue(Locale locale) Creates and returns a StringValue used for rendering the week of year.prepareRenderingComponent(JXMonthView monthView, Calendar calendar, CalendarState dayState) Configures and returns a component for rendering of the given monthView cell.voidUpdates internal state to the given Locale.
-
Constructor Details
-
RenderingHandler
protected RenderingHandler()
-
-
Method Details
-
createMonthHeaderStringValue
Creates and returns a StringValue used for rendering the title of a month box. The input they are assumed to handle is a Calendar configured to a day of the month to render.- Parameters:
locale- the Locale to use, might be null to indicate usage of the default Locale- Returns:
- a StringValue appropriate for rendering month title.
-
createWeekOfYearStringValue
Creates and returns a StringValue used for rendering the week of year. The input they are assumed to handle is a Calendar configured to a day of the week to render.- Parameters:
locale- the Locale to use, might be null to indicate usage of the default Locale- Returns:
- a StringValue appropriate for rendering week of year.
-
createDayStringValue
Creates and returns a StringValue used for rendering days in a month. The input they are assumed to handle is a Calendar configured to the day.- Parameters:
locale- the Locale to use, might be null to indicate usage of the default Locale- Returns:
- a StringValue appropriate for rendering days in a month
-
setLocale
Updates internal state to the given Locale.- Specified by:
setLocalein interfaceCalendarRenderingHandler- Parameters:
locale- the new Locale.
-
prepareRenderingComponent
public JComponent prepareRenderingComponent(JXMonthView monthView, Calendar calendar, CalendarState dayState) Configures and returns a component for rendering of the given monthView cell.- Specified by:
prepareRenderingComponentin interfaceCalendarRenderingHandler- Parameters:
monthView- the JXMonthView to render ontocalendar- the cell valuedayState- the DayState of the cell- Returns:
- a component configured for rendering the given cell
-