Add javadoc and comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfEventType.java
1 /*******************************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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: Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11
12 package org.eclipse.linuxtools.tmf.core.ctfadaptor;
13
14 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
15 import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
16
17 /**
18 */
19 public class CtfTmfEventType extends TmfEventType {
20
21 /**
22 * Constructor for CtfTmfEventType.
23 * @param contextId String
24 * @param eventName String
25 * @param content ITmfEventField
26 */
27 public CtfTmfEventType(String contextId, String eventName,
28 ITmfEventField content) {
29 super(contextId, eventName, content);
30 }
31
32 /**
33 * Method toString.
34 * @return String
35 */
36 @Override
37 public String toString()
38 {
39 return this.getName();
40 }
41 }
This page took 0.032409 seconds and 6 git commands to generate.