Contribute CNF based TMF project handling
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / events / EventsView.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2010 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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.lttng.ui.views.events;
14
15 import org.eclipse.linuxtools.tmf.ui.viewers.events.TmfEventsTable;
16 import org.eclipse.linuxtools.tmf.ui.views.events.TmfEventsView;
17 import org.eclipse.swt.widgets.Composite;
18
19 /**
20 * <b><u>EventsView</u></b>
21 * <p>
22 * TODO: Implement me. Please.
23 */
24 public class EventsView extends TmfEventsView {
25
26 public static final String ID = "org.eclipse.linuxtools.lttng.ui.views.events"; //$NON-NLS-1$
27
28 private static final int BUFFERED_EVENTS = 1000;
29
30 // ------------------------------------------------------------------------
31 // Constructor
32 // ------------------------------------------------------------------------
33
34 public EventsView() {
35 super(BUFFERED_EVENTS);
36 }
37
38 @Override
39 protected TmfEventsTable createEventsTable(Composite parent, int cacheSize) {
40 return new EventsTable(parent, cacheSize);
41 }
42
43 /* (non-Javadoc)
44 * @see java.lang.Object#toString()
45 */
46 @Override
47 @SuppressWarnings("nls")
48 public String toString() {
49 return "[EventsView]";
50 }
51
52
53 }
This page took 0.03344 seconds and 5 git commands to generate.