use of org.eclipse.titan.log.viewer.actions.OpenTextTableStatisticalViewMenuAction in project titan.EclipsePlug-ins by eclipse.
the class StatisticalView method createStatisticalViewContextMenuActions.
private void createStatisticalViewContextMenuActions() {
this.openMSCViewAction = new OpenMSCViewAction();
this.openMSCViewAction.setEnabled(false);
this.openMSCViewAction.setImageDescriptor(Activator.getDefault().getCachedImageDescriptor(Constants.ICONS_MSC_VIEW));
this.addSelectionChangedListener(openMSCViewAction);
this.openTextTableStatisticalViewMenuAction = new OpenTextTableStatisticalViewMenuAction(this);
this.openTextTableStatisticalViewMenuAction.setEnabled(false);
this.openTextTableStatisticalViewMenuAction.setImageDescriptor(Activator.getDefault().getCachedImageDescriptor(Constants.ICONS_TEXT_TABLE_VIEW));
}
Aggregations