timing.swtbot: add Generic SegmentTable tests
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / SystemCallLatencyView.java
CommitLineData
7b79ee46 1/*******************************************************************************
edded5c1 2 * Copyright (c) 2015, 2016 Ericsson
7b79ee46
FLN
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 * Contributors:
10 * France Lapointe Nguyen - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency;
14
7b79ee46 15import org.eclipse.jface.viewers.TableViewer;
edded5c1
BH
16import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.AbstractSegmentStoreTableView;
17import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.AbstractSegmentStoreTableViewer;
7b79ee46
FLN
18
19/**
20 * View for the latency analysis
21 *
22 * @author France Lapointe Nguyen
23 */
aa65365a 24public class SystemCallLatencyView extends AbstractSegmentStoreTableView {
7b79ee46
FLN
25
26 // ------------------------------------------------------------------------
27 // Attributes
28 // ------------------------------------------------------------------------
29
30 /** The view's ID */
31 public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.views.latency"; //$NON-NLS-1$
32
7b79ee46
FLN
33 // ------------------------------------------------------------------------
34 // Constructor
35 // ------------------------------------------------------------------------
36
7b79ee46 37 @Override
6fe3b6eb 38 protected AbstractSegmentStoreTableViewer createSegmentStoreViewer(TableViewer tableViewer) {
aa65365a 39 return new SystemCallLatencyTableViewer(tableViewer);
7b79ee46
FLN
40 }
41}
This page took 0.042298 seconds and 5 git commands to generate.