com.vaadin.v7.ui.Select Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-server Show documentation
Show all versions of vaadin-compatibility-server Show documentation
Vaadin 7 compatibility package for Vaadin 8
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.ui;
import java.util.Collection;
import com.vaadin.v7.data.Container;
import com.vaadin.v7.data.Item;
/**
*
* A class representing a selection of items the user has selected in a UI. The
* set of choices is presented as a set of {@link Item}s in a {@link Container}.
*
*
*
* A Select
component may be in single- or multiselect mode.
* Multiselect mode means that more than one item can be selected
* simultaneously.
*
*
* @author Vaadin Ltd.
* @since 3.0
* @deprecated As of 7.0. Use {@link ComboBox} instead.
*/
@Deprecated
public class Select extends ComboBox {
/* Component methods */
public Select() {
super();
}
public Select(String caption, Collection> options) {
super(caption, options);
}
public Select(String caption, Container dataSource) {
super(caption, dataSource);
}
public Select(String caption) {
super(caption);
}
}