You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Select.java 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Copyright 2000-2018 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.v7.ui;
  17. import java.util.Collection;
  18. import com.vaadin.v7.data.Container;
  19. /**
  20. * <p>
  21. * A class representing a selection of items the user has selected in a UI. The
  22. * set of choices is presented as a set of {@link Item}s in a {@link Container}.
  23. * </p>
  24. *
  25. * <p>
  26. * A <code>Select</code> component may be in single- or multiselect mode.
  27. * Multiselect mode means that more than one item can be selected
  28. * simultaneously.
  29. * </p>
  30. *
  31. * @author Vaadin Ltd.
  32. * @since 3.0
  33. * @deprecated As of 7.0. Use {@link ComboBox} instead.
  34. */
  35. @Deprecated
  36. public class Select extends ComboBox {
  37. /* Component methods */
  38. public Select() {
  39. super();
  40. }
  41. public Select(String caption, Collection<?> options) {
  42. super(caption, options);
  43. }
  44. public Select(String caption, Container dataSource) {
  45. super(caption, dataSource);
  46. }
  47. public Select(String caption) {
  48. super(caption);
  49. }
  50. }