Java com.vaadin.v7.ui ComboBox fields, constructors, methods, implement or subclass

Example usage for Java com.vaadin.v7.ui ComboBox fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.vaadin.v7.ui ComboBox.

The text is from its open source code.

Subclass

com.vaadin.v7.ui.ComboBox has subclasses.
Click this link to see all its subclasses.

Constructor

Method

ItemaddItem(Object itemId)
Create a new item into container.
voidaddItems(Object... itemId)
Adds given items with given item ids to container.
booleancontainsId(Object itemId)
Tests, if the collection contains an item with given id.
StringgetCaption()
Gets the caption of the component.
ItemgetItem(Object itemId)
Gets the item from the container with given id.
CollectiongetItemIds()
Gets the item Id collection from the container.
ObjectgetValue()
Gets the selected item id or in multiselect mode a set of selected ids.
booleanisVisible()
Tests the visibility property of the component.
booleanremoveItem(Object itemId)
voidsetCaption(String caption)
Sets the caption of the component.
voidsetEnabled(boolean enabled)
Enables or disables the component.
voidsetItemCaption(Object itemId, String caption)
Override the caption of an item.
voidsetItemCaptionMode(ItemCaptionMode mode)
Sets the item caption mode.
voidsetNullSelectionAllowed(boolean nullSelectionAllowed)
Allow or disallow empty selection by the user.
voidsetPageLength(int pageLength)
Sets the page length for the suggestion popup.
voidsetValue(Object newValue)
Sets the visible value of the property.
voidsetVisible(boolean visible)
Sets the visibility of the component.
voidsetWidth(float width, Unit unit)
Sets the width of the object.