lttng: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.ust.ui / src / org / eclipse / linuxtools / internal / lttng2 / ust / ui / views / memusage / MemoryUsageView.java
1 /**********************************************************************
2 * Copyright (c) 2014 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 * Contributors:
10 * Matthew Khouzam - Initial API and implementation
11 **********************************************************************/
12
13 package org.eclipse.linuxtools.internal.lttng2.ust.ui.views.memusage;
14
15 import org.eclipse.linuxtools.tmf.ui.views.TmfChartView;
16 import org.eclipse.swt.widgets.Composite;
17
18 /**
19 * Memory Usage View
20 *
21 * @author Matthew Khouzam
22 */
23 public class MemoryUsageView extends TmfChartView {
24
25 /** ID string */
26 public static final String ID = "org.eclipse.linuxtools.lttng2.ust.memoryusage"; //$NON-NLS-1$
27
28 /**
29 * Constructor
30 */
31 public MemoryUsageView() {
32 super(Messages.MemoryUsageView_Title);
33 }
34
35 @Override
36 public void createPartControl(Composite parent) {
37 setChartViewer( new MemoryUsageViewer(parent));
38 super.createPartControl(parent);
39 }
40
41 @Override
42 public void setFocus() {
43 }
44 }
This page took 0.032675 seconds and 5 git commands to generate.