/* * Copyright (c) 2007 Declarative Engineering LLC. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Declarative Engineering LLC * verson 1 which accompanies this distribution, and is available at * http://declarativeengineering.com/legal/DE_Developer_License_v1.txt */ package com.foundation.tcv.swt; import org.eclipse.swt.SWT; public interface IDateTime extends IComponent { public static final int STYLE_DATE = SWT.DATE; public static final int STYLE_TIME = SWT.TIME; public static final int STYLE_CALENDAR = SWT.CALENDAR; public static final int STYLE_SHORT = SWT.SHORT; public static final int STYLE_MEDIUM = SWT.MEDIUM; public static final int STYLE_LONG = SWT.LONG; public static final int STYLE_DROP_DOWN = SWT.DROP_DOWN; public static final int MESSAGE_VIEW_REFRESH_SELECTION = IComponent.LAST_MESSAGE_NUMBER + 1; public static final int MESSAGE_VIEW_SYNCHRONIZE_SELECTION = IComponent.LAST_MESSAGE_NUMBER + 2; public static final int MESSAGE_SET_AUTO_SYNCHRONIZE_SELECTION = IComponent.LAST_MESSAGE_NUMBER + 3; public static final int MESSAGE_SET_AUTO_SYNCHRONIZE_SELECTION_DELAY = IComponent.LAST_MESSAGE_NUMBER + 4; public static final int MESSAGE_SEND_DOUBLE_CLICK = IComponent.LAST_MESSAGE_NUMBER + 5; public static final int MESSAGE_DOUBLE_CLICK = IComponent.LAST_MESSAGE_NUMBER + 6; public static final int LAST_MESSAGE_NUMBER = IComponent.LAST_MESSAGE_NUMBER + 6; public static final int LAST_LINK_TARGET = IComponent.LAST_LINK_TARGET + 0; }//IDateTime//