All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.wicket.kendo.ui.scheduler.views.DayView Maven / Gradle / Ivy

There is a newer version: 10.0.0-M1
Show newest version
package com.googlecode.wicket.kendo.ui.scheduler.views;


/**
 * Defines the 'day' scheduler's view
 *
 * @author Patrick Davids - Patrick1701
 *
 */
public class DayView extends SchedulerView
{
	private static final long serialVersionUID = 1L;

	/**
	 * Gets a new instance of {@code DayView}
	 *
	 * @return a new {@code DayView}
	 */
	public static DayView newInstance()
	{
		return new DayView();
	}

	/**
	 * Constructor
	 */
	private DayView()
	{
		super(SchedulerViewType.day);
	}

	@Override
	public SchedulerView setDateHeaderTemplatePattern(String pattern)
	{
		return super.setDateHeaderTemplatePattern(pattern);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy