Merge branch 'master' into TmfEventModel
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / stubs / event / TmfEventTypeStub.java
CommitLineData
d18dd09b
ASL
1/*******************************************************************************
2 * Copyright (c) 2009 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
6c13869b
FC
13package org.eclipse.linuxtools.tmf.stubs.event;
14
15import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
d18dd09b
ASL
16
17/**
18 * <b><u>TmfEventTypeStub</u></b>
19 * <p>
20 * TODO: Implement me. Please.
21 */
3b38ea61 22@SuppressWarnings("nls")
d18dd09b
ASL
23public class TmfEventTypeStub extends TmfEventType {
24
cbbcc354 25 private static final String FIELD_1 = "Field1";
26 private static final String FIELD_2 = "Field2";
27 private static final String FIELD_3 = "Field3";
28 private static final String FIELD_4 = "Field4";
29 private static final String FIELD_5 = "Field5";
30 private static final String[] FIELDS = new String[] { FIELD_1, FIELD_2, FIELD_3, FIELD_4, FIELD_5 };
31
d18dd09b 32 public TmfEventTypeStub() {
cbbcc354 33 super("UnitTest", "TmfEventTypeStub", FIELDS);
d18dd09b
ASL
34 }
35}
This page took 0.031195 seconds and 5 git commands to generate.