com.vaadin.ui.SingleSelect Maven / Gradle / Ivy
/*
* 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.ui;
import com.vaadin.data.HasValue;
/**
* Single selection component whose selection is treated as a value.
*
* @author Vaadin Ltd
* @since 8.0
*
* @param
* the selection value type
*
*/
public interface SingleSelect extends HasValue {
}