You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
644 B

package app.navigation.match.components;
import app.navigation.AbstractNavigationHeader;
import app.navigation.match.MatchNavigation;
import com.vaadin.flow.component.html.Label;
public class MatchNavigationHeader extends AbstractNavigationHeader<MatchNavigation> {
public MatchNavigationHeader(MatchNavigation navigation) {
super(navigation);
}
@Override
protected void defineChildren() {
removeAll();
add(new Label("Season:"), navigation.getSeasonSelect());
add(new Label("Matchday:"), navigation.getMatchdaySelect());
add(new Label("Match:"), navigation.getMatchSelect());
}
}