parent
42727d01d5
commit
ae507e7dee
@ -0,0 +1,2 @@ |
||||
boot.validation.initialized=true |
||||
eclipse.preferences.version=1 |
||||
@ -0,0 +1,17 @@ |
||||
package de.kreth.vaadin.clubhelper.vaadinclubhelper.ui.components; |
||||
|
||||
import com.vaadin.ui.Grid; |
||||
|
||||
import de.kreth.clubhelperbackend.google.calendar.ClubEvent; |
||||
|
||||
public class EventGrid extends Grid<ClubEvent> { |
||||
|
||||
private static final long serialVersionUID = -5435770187868470290L; |
||||
|
||||
public EventGrid() { |
||||
addColumn(ClubEvent::getStart).setCaption("Start"); |
||||
addColumn(ClubEvent::getCaption).setCaption("Bezeichnung"); |
||||
addColumn(ClubEvent::getLocation).setCaption("Ort"); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue