All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mvysny.kaributesting.v10.groovy.CheckboxGroupUtils.groovy Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.github.mvysny.kaributesting.v10.groovy

import com.github.mvysny.kaributesting.v10.CheckboxGroupKt
import com.vaadin.flow.component.checkbox.CheckboxGroup
import groovy.transform.CompileStatic
import org.jetbrains.annotations.NotNull

/**
 * A set of basic extension methods for CheckboxGroup.
 * @author mavi
 */
@CompileStatic
class CheckboxGroupUtils {
    /**
     * Fetches renderings of items currently displayed in the list box component.
     */
    @NotNull
    static List getRenderedItems(@NotNull CheckboxGroup self) {
        CheckboxGroupKt.getItemLabels(self)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy