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

com.vaadin.v7.ui.Select Maven / Gradle / Ivy

The newest version!
/*
 * 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy