String selectedCaption = null;
T value = getDataCommunicator().getKeyMapper().get(key);
if (value != null) {
- selectedCaption = getItemCaptionProvider().apply(value);
+ selectedCaption = getItemCaptionGenerator().apply(value);
}
getState().selectedItemCaption = selectedCaption;
}
public interface NewItemHandler extends Consumer<String>, Serializable {
}
- /**
- * ItemCaptionProvider can be used to customize the string shown to the user
- * for an item.
- *
- * @see ComboBox#setItemCaptionProvider(ItemCaptionProvider)
- * @param <T>
- * item type in the combo box
- */
- @FunctionalInterface
- public interface ItemCaptionProvider<T>
- extends Function<T, String>, Serializable {
- }
-
/**
* ItemIconProvider can be used to add custom icons to combo box items shown
* in the popup.
*/
private NewItemHandler newItemHandler;
- private ItemCaptionProvider<T> itemCaptionProvider = String::valueOf;
+ private ItemCaptionGenerator<T> itemCaptionGenerator = String::valueOf;
private StyleGenerator<T> itemStyleGenerator = item -> null;
private ItemIconProvider<T> itemIconProvider = item -> null;
if (filterText == null) {
return true;
} else {
- return getItemCaptionProvider().apply(item).toLowerCase(getLocale())
+ return getItemCaptionGenerator().apply(item)
+ .toLowerCase(getLocale())
.contains(filterText.toLowerCase(getLocale()));
}
};
addDataGenerator((T data, JsonObject jsonObject) -> {
jsonObject.put(DataCommunicatorConstants.NAME,
- getItemCaptionProvider().apply(data));
+ getItemCaptionGenerator().apply(data));
String style = itemStyleGenerator.apply(data);
if (style != null) {
jsonObject.put(ComboBoxConstants.STYLE, style);
}
/**
- * Gets the item caption provider that is used to produce the strings shown
+ * Gets the item caption generator that is used to produce the strings shown
* in the combo box for each item.
*
- * @return the item caption provider used, not null
+ * @return the item caption generator used, not null
*/
- public ItemCaptionProvider<T> getItemCaptionProvider() {
- return itemCaptionProvider;
+ public ItemCaptionGenerator<T> getItemCaptionGenerator() {
+ return itemCaptionGenerator;
}
/**
- * Sets the item caption provider that is used to produce the strings shown
+ * Sets the item caption generator that is used to produce the strings shown
* in the combo box for each item. By default,
* {@link String#valueOf(Object)} is used.
*
- * @param itemCaptionProvider
+ * @param itemCaptionGenerator
* the item caption provider to use, not null
*/
- public void setItemCaptionProvider(
- ItemCaptionProvider<T> itemCaptionProvider) {
- Objects.requireNonNull(itemCaptionProvider,
- "Item caption providers must not be null");
- this.itemCaptionProvider = itemCaptionProvider;
+ public void setItemCaptionGenerator(
+ ItemCaptionGenerator<T> itemCaptionGenerator) {
+ Objects.requireNonNull(itemCaptionGenerator,
+ "Item caption generators must not be null");
+ this.itemCaptionGenerator = itemCaptionGenerator;
getDataCommunicator().reset();
}
HasValue.ValueChangeListener<? super T> listener) {
return addSelectionListener(event -> {
((ValueChangeListener<T>) listener)
- .accept(new ValueChange<T>(event.getConnector(),
+ .accept(new ValueChange<>(event.getConnector(),
event.getValue(), event.isUserOriginated()));
});
}
--- /dev/null
+/*
+ * Copyright 2000-2016 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.ui;
+
+import java.io.Serializable;
+import java.util.function.Function;
+
+/**
+ * {@link ItemCaptionGenerator} can be used to customize the string shown to the
+ * user for an item.
+ *
+ * @see ComboBox#setItemCaptionGenerator(ItemCaptionProvider)
+ * @param <T>
+ * item type
+ * @since 8.0
+ * @author Vaadin Ltd
+ */
+@FunctionalInterface
+public interface ItemCaptionGenerator<T>
+ extends Function<T, String>, Serializable {
+
+ /**
+ * Gets a caption for the {@code item}.
+ *
+ * @param item
+ * the item to get caption for
+ * @return the caption of the item
+ */
+ @Override
+ String apply(T item);
+}