/****************************************************************************** * Copyright (c) 2015, 2016 Ericsson * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency; import org.eclipse.jface.viewers.TableViewer; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Table; import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.density.AbstractSegmentStoreDensityView; import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.density.AbstractSegmentStoreDensityViewer; import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.AbstractSegmentStoreTableViewer; import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.SegmentStoreTableViewer; import org.eclipse.tracecompass.internal.analysis.os.linux.core.latency.SystemCallLatencyAnalysis; /** * System Call Density view * * @author Matthew Khouzam * @author Marc-Andre Laperle */ public class SystemCallLatencyDensityView extends AbstractSegmentStoreDensityView { /** The view's ID */ public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.views.latency.density"; //$NON-NLS-1$ /** * Constructs a new density view. */ public SystemCallLatencyDensityView() { super(ID); } @Override protected AbstractSegmentStoreTableViewer createSegmentStoreTableViewer(Composite parent) { return new SegmentStoreTableViewer(new TableViewer(parent, SWT.FULL_SELECTION | SWT.VIRTUAL), SystemCallLatencyAnalysis.ID) { @Override protected void createProviderColumns() { super.createProviderColumns(); Table t = (Table) getControl(); t.setColumnOrder(new int[] { 2, 3, 0, 1 }); } }; } @Override protected AbstractSegmentStoreDensityViewer createSegmentStoreDensityViewer(Composite parent) { return new SystemCallDensityViewer(parent); } }