xml.ui: Enable multiple XML latency views instances
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / statistics / SystemCallLatencyStatisticsView.java
1 /*******************************************************************************
2 * Copyright (c) 2015 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics;
13
14 import org.eclipse.swt.widgets.Composite;
15 import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.statistics.AbstractSegmentsStatisticsView;
16 import org.eclipse.tracecompass.tmf.ui.viewers.tree.AbstractTmfTreeViewer;
17
18 /**
19 * View to display latency statistics.
20 *
21 * @author Bernd Hufmann
22 *
23 */
24 public class SystemCallLatencyStatisticsView extends AbstractSegmentsStatisticsView {
25
26 /** The view ID*/
27 public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.ui.views.latency.statsview"; //$NON-NLS-1$
28
29 @Override
30 protected AbstractTmfTreeViewer createSegmentStoreStatisticsViewer(Composite parent) {
31 return new SystemCallLatencyStatisticsViewer(parent);
32 }
33
34 }
This page took 0.030214 seconds and 5 git commands to generate.