os.linux: Remove latency table view and use the one from timing
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / SystemCallLatencyDensityView.java
CommitLineData
b23cbbfc 1/******************************************************************************
edded5c1 2 * Copyright (c) 2015, 2016 Ericsson
b23cbbfc
MAL
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency;
11
12import org.eclipse.jface.viewers.TableViewer;
13import org.eclipse.swt.SWT;
14import org.eclipse.swt.widgets.Composite;
15import org.eclipse.swt.widgets.Table;
b23cbbfc
MAL
16import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.density.AbstractSegmentStoreDensityView;
17import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.density.AbstractSegmentStoreDensityViewer;
edded5c1 18import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.AbstractSegmentStoreTableViewer;
43439230
GB
19import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.SegmentStoreTableViewer;
20import org.eclipse.tracecompass.internal.analysis.os.linux.core.latency.SystemCallLatencyAnalysis;
b23cbbfc
MAL
21
22/**
23 * System Call Density view
24 *
25 * @author Matthew Khouzam
26 * @author Marc-Andre Laperle
27 */
28public class SystemCallLatencyDensityView extends AbstractSegmentStoreDensityView {
29
30 /** The view's ID */
31 public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.views.latency.density"; //$NON-NLS-1$
32
33 /**
34 * Constructs a new density view.
35 */
36 public SystemCallLatencyDensityView() {
37 super(ID);
38 }
39
40 @Override
41 protected AbstractSegmentStoreTableViewer createSegmentStoreTableViewer(Composite parent) {
43439230 42 return new SegmentStoreTableViewer(new TableViewer(parent, SWT.FULL_SELECTION | SWT.VIRTUAL), SystemCallLatencyAnalysis.ID) {
b23cbbfc 43 @Override
0f769d2b
MK
44 protected void createProviderColumns() {
45 super.createProviderColumns();
b23cbbfc
MAL
46 Table t = (Table) getControl();
47 t.setColumnOrder(new int[] { 2, 3, 0, 1 });
48 }
49 };
50 }
51
52 @Override
53 protected AbstractSegmentStoreDensityViewer createSegmentStoreDensityViewer(Composite parent) {
0e4f957e 54 return new SystemCallDensityViewer(parent);
b23cbbfc
MAL
55 }
56
57}
This page took 0.037037 seconds and 5 git commands to generate.