analysis.io: Introduce an I/O Activity view
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / io / diskioactivity / DiskIOActivityView.java
1 /**********************************************************************
2 * Copyright (c) 2016 École Polytechnique de Montréal
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.io.diskioactivity;
11
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.eclipse.swt.widgets.Composite;
14 import org.eclipse.tracecompass.tmf.ui.viewers.xycharts.TmfXYChartViewer;
15 import org.eclipse.tracecompass.tmf.ui.views.TmfChartView;
16
17 /**
18 * Main view to show the Disk IO Activity
19 *
20 * @author Houssem Daoud
21 */
22 public class DiskIOActivityView extends TmfChartView {
23
24 /** ID string */
25 public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.views.diskioactivity"; //$NON-NLS-1$
26
27 /**
28 * Constructor
29 */
30 public DiskIOActivityView() {
31 super(Messages.DiskIOActivityView_Title);
32 }
33
34 @Override
35 protected TmfXYChartViewer createChartViewer(@Nullable Composite parent) {
36 return new DisksIOActivityViewer(parent);
37 }
38 }
This page took 0.033251 seconds and 5 git commands to generate.