6267ce4973ae8069fbecf68f6af1be1a1c6434f2
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / SystemCallLatencyScatterView.java
1 /*******************************************************************************
2 * Copyright (c) 2015, 2016 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
10 package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency;
11
12 import static org.eclipse.tracecompass.common.core.NonNullUtils.nullToEmptyString;
13
14 import org.eclipse.jdt.annotation.Nullable;
15 import org.eclipse.swt.widgets.Composite;
16 import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.scatter.AbstractSegmentStoreScatterGraphViewer;
17 import org.eclipse.tracecompass.common.core.NonNullUtils;
18 import org.eclipse.tracecompass.tmf.ui.viewers.xycharts.TmfXYChartViewer;
19 import org.eclipse.tracecompass.tmf.ui.views.TmfChartView;
20
21 /**
22 * Some stuff
23 *
24 * @author Matthew Khouzam
25 */
26 public class SystemCallLatencyScatterView extends TmfChartView {
27 // Attributes
28 // ------------------------------------------------------------------------
29
30 /** The view's ID */
31 public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.views.latency.scatter"; //$NON-NLS-1$
32
33 private @Nullable AbstractSegmentStoreScatterGraphViewer fScatterViewer;
34
35 // ------------------------------------------------------------------------
36 // Constructor
37 // ------------------------------------------------------------------------
38
39 /**
40 * Constructor
41 */
42 public SystemCallLatencyScatterView() {
43 super(ID);
44 }
45
46 // ------------------------------------------------------------------------
47 // ViewPart
48 // ------------------------------------------------------------------------
49
50 @Override
51 protected TmfXYChartViewer createChartViewer(@Nullable Composite parent) {
52 fScatterViewer = new SystemCallLatencyScatterGraphViewer(NonNullUtils.checkNotNull(parent), nullToEmptyString(Messages.SystemCallLatencyScatterView_title), nullToEmptyString(Messages.SystemCallLatencyScatterView_xAxis),
53 nullToEmptyString(Messages.SystemCallLatencyScatterView_yAxis));
54 return fScatterViewer;
55 }
56
57 }
This page took 0.03203 seconds and 4 git commands to generate.