/******************************************************************************* * Copyright (c) 2008, 2017 Innoopract Informationssysteme GmbH and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Innoopract Informationssysteme GmbH - initial API and implementation * EclipseSource - ongoing development ******************************************************************************/ package org.eclipse.swt.internal.widgets.datetimekit; import static org.eclipse.rap.rwt.internal.lifecycle.WidgetLCAUtil.preserveProperty; import static org.eclipse.rap.rwt.internal.lifecycle.WidgetLCAUtil.renderProperty; import java.io.IOException; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.DateTime; final class DateTimeCalendarLCA extends AbstractDateTimeLCADelegate { static final DateTimeCalendarLCA INSTANCE = new DateTimeCalendarLCA(); private static final String PROP_YEAR = "year"; private static final String PROP_MONTH = "month"; private static final String PROP_DAY = "day"; @Override void preserveValues( DateTime dateTime ) { preserveProperty( dateTime, PROP_YEAR, dateTime.getYear() ); preserveProperty( dateTime, PROP_MONTH, dateTime.getMonth() ); preserveProperty( dateTime, PROP_DAY, dateTime.getDay() ); DateTimeLCAUtil.preserveMinMaxLimit( dateTime ); } @Override void renderInitialization( DateTime dateTime ) throws IOException { DateTimeLCAUtil.renderInitialization( dateTime ); DateTimeLCAUtil.renderCellSize( dateTime ); DateTimeLCAUtil.renderMonthNames( dateTime ); DateTimeLCAUtil.renderWeekdayShortNames( dateTime ); } @Override void renderChanges( DateTime dateTime ) throws IOException { DateTimeLCAUtil.renderChanges( dateTime ); renderProperty( dateTime, PROP_YEAR, dateTime.getYear(), SWT.DEFAULT ); renderProperty( dateTime, PROP_MONTH, dateTime.getMonth(), SWT.DEFAULT ); renderProperty( dateTime, PROP_DAY, dateTime.getDay(), SWT.DEFAULT ); DateTimeLCAUtil.renderMinMaxLimit( dateTime ); } private DateTimeCalendarLCA() { // prevent instantiation } }