Search in sources :

Example 1 with Song

use of com.vaadin.flow.component.combobox.test.entity.Song in project flow-components by vaadin.

the class ComboBoxView method createListOfSongs.

private List<Song> createListOfSongs() {
    List<Song> listOfSongs = new ArrayList<>();
    listOfSongs.add(new Song("A V Club Disagrees", "Haircuts for Men", "Physical Fitness"));
    listOfSongs.add(new Song("Sculpted", "Haywyre", "Two Fold Pt.1"));
    listOfSongs.add(new Song("Voices of a Distant Star", "Killigrew", "Animus II"));
    return listOfSongs;
}
Also used : Song(com.vaadin.flow.component.combobox.test.entity.Song) ArrayList(java.util.ArrayList)

Aggregations

Song (com.vaadin.flow.component.combobox.test.entity.Song)1 ArrayList (java.util.ArrayList)1