package org.simantics.district.route.ui; import org.eclipse.e4.core.di.annotations.CanExecute; import org.eclipse.e4.core.di.annotations.Execute; import org.eclipse.e4.ui.workbench.modeling.ESelectionService; public class OpenRouteView { @CanExecute public boolean canExecute(ESelectionService selectionService) { return true; } @Execute public void openPropertyTable(ESelectionService selectionService) { RouteUI.openRouteView(); } }