analysis: Allow segment table viewer/provider to accept ISegment[] input
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / LatencyView.java
CommitLineData
7b79ee46
FLN
1/*******************************************************************************
2 * Copyright (c) 2015 Ericsson
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;
b9fff7ad
BH
16import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.AbstractSegmentStoreTableView;
17import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.AbstractSegmentStoreTableViewer;
7b79ee46
FLN
18
19/**
20 * View for the latency analysis
21 *
22 * @author France Lapointe Nguyen
23 */
b9fff7ad 24public class LatencyView 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
b9fff7ad
BH
38 protected AbstractSegmentStoreTableViewer getSegmentStoreViewer(TableViewer tableViewer) {
39 return new LatencyTableViewer(tableViewer);
7b79ee46
FLN
40 }
41}
This page took 0.02758 seconds and 5 git commands to generate.