Bug 483621: Move segment store statistics into timing analysis plug-ins
[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
CommitLineData
ce8319b6
BH
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 *******************************************************************************/
ce8319b6
BH
12package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics;
13
14import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
15
16import org.eclipse.swt.widgets.Composite;
658401c8
BH
17import org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.statistics.AbstractSegmentStoreStatisticsView;
18import org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.statistics.AbstractSegmentStoreStatisticsViewer;
ce8319b6
BH
19
20/**
21 * View to display latency statistics.
22 *
23 * @author Bernd Hufmann
24 *
25 */
aa65365a 26public class SystemCallLatencyStatisticsView extends AbstractSegmentStoreStatisticsView {
ce8319b6
BH
27
28 /** The view ID*/
29 public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.ui.views.latency.statsview"; //$NON-NLS-1$
30
31 @Override
3507ca88 32 protected AbstractSegmentStoreStatisticsViewer createSegmentStoreStatisticsViewer(Composite parent) {
aa65365a 33 return checkNotNull((AbstractSegmentStoreStatisticsViewer) new SystemCallLatencyStatisticsViewer(checkNotNull(parent)));
ce8319b6
BH
34 }
35
36}
This page took 0.027237 seconds and 5 git commands to generate.