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 / LatencyScatterView.java
CommitLineData
a5c41909
MK
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
10package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency;
d9789e33 11
a5c41909
MK
12import static org.eclipse.tracecompass.common.core.NonNullUtils.nullToEmptyString;
13
14import org.eclipse.jdt.annotation.Nullable;
a5c41909 15import org.eclipse.swt.widgets.Composite;
03c96217 16import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.AbstractSegmentStoreScatterGraphViewer;
d9789e33
MK
17import org.eclipse.tracecompass.common.core.NonNullUtils;
18import org.eclipse.tracecompass.tmf.ui.viewers.xycharts.TmfXYChartViewer;
19import org.eclipse.tracecompass.tmf.ui.views.TmfChartView;
a5c41909
MK
20
21/**
22 * Some stuff
23 *
24 * @author Matthew Khouzam
25 */
d9789e33 26public class LatencyScatterView extends TmfChartView {
a5c41909
MK
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
03c96217 33 private @Nullable AbstractSegmentStoreScatterGraphViewer fScatterViewer;
a5c41909
MK
34
35 // ------------------------------------------------------------------------
36 // Constructor
37 // ------------------------------------------------------------------------
38
39 /**
40 * Constructor
41 */
42 public LatencyScatterView() {
43 super(ID);
44 }
45
46 // ------------------------------------------------------------------------
47 // ViewPart
48 // ------------------------------------------------------------------------
49
50 @Override
d9789e33
MK
51 protected TmfXYChartViewer createChartViewer(@Nullable Composite parent) {
52 fScatterViewer = new LatencyScatterGraphViewer(NonNullUtils.checkNotNull(parent), nullToEmptyString(Messages.LatencyScatterView_title), nullToEmptyString(Messages.LatencyScatterView_xAxis),
53 nullToEmptyString(Messages.LatencyScatterView_yAxis));
54 return fScatterViewer;
a5c41909
MK
55 }
56
57}
This page took 0.026433 seconds and 5 git commands to generate.