/* @ITMillApache2LicenseForJavaFiles@ */ package com.vaadin.ui; import java.util.Date; import com.vaadin.data.Property; /** *
* A date entry component, which displays the actual date selector inline. * *
* * @see DateField * @see PopupDateField * @author IT Mill Ltd. * @version * @VERSION@ * @since 5.0 */ @SuppressWarnings("serial") public class InlineDateField extends DateField { public InlineDateField() { super(); type = TYPE_INLINE; } public InlineDateField(Property dataSource) throws IllegalArgumentException { super(dataSource); type = TYPE_INLINE; } public InlineDateField(String caption, Date value) { super(caption, value); type = TYPE_INLINE; } public InlineDateField(String caption, Property dataSource) { super(caption, dataSource); type = TYPE_INLINE; } public InlineDateField(String caption) { super(caption); type = TYPE_INLINE; } }