tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / internal / lttng / core / util / EventsPair.java
1 /*******************************************************************************
2 * Copyright (c) 2011 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
5 * Public License v1.0 which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Mathieu Denis (mathieu.denis55@gmail.com) - Initial API and implementation
10 *******************************************************************************/
11 package org.eclipse.linuxtools.internal.lttng.core.util;
12
13 import java.util.Vector;
14
15
16 /**
17 * Contains two lists of events name. The first list contains the events identified as starting request and the second list
18 * contains the events identified as ending request
19 */
20 public class EventsPair extends Pair<Vector<String>, Vector<String>> {
21
22 public EventsPair() {
23 super();
24 }
25
26 public EventsPair(Vector<String> startingEvents, Vector<String> endingEvents) {
27 super(startingEvents, endingEvents);
28 }
29 }
This page took 0.032441 seconds and 5 git commands to generate.