Toggle navigation
Home
com.vaadin.v7.ui.ComboBox to com.vaadin.ui.ComboBox<java.lang.String>
No. of Instances - 15
No. of Commits - 1
No. of Projects - {'framework'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Method invocation
setInputPrompt
to
setPlaceholder
setNullSelectionAllowed
to
setEmptySelectionAllowed
setNullSelectionAllowed
to
setEmptySelectionAllowed
setContainerDataSource
to
setDataSource
setNullSelectionAllowed
to
setEmptySelectionAllowed
setInputPrompt
to
setPlaceholder
setInputPrompt
to
setPlaceholder
Wrap or Un-wrap
addComponent
to
addComponent
Cascading Type Change (Similar)
ComboBox
to
ComboBox<>
ComboBox
to
ComboBox<>
Other
new Property.ValueChangeListener(){ @Override public void valueChange( Property.ValueChangeEvent event){ Object value=event.getProperty().getValue(); if (value != null) { label.setValue(value.toString()); } else { label.setValue("null"); } } }
to
value