blob: 8da7924f068aa3559cbeff11466223a3ff6cecd2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors: Matthew Khouzam - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ctf.core.event;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.tracecompass.tmf.core.event.ITmfEventField;
import org.eclipse.tracecompass.tmf.core.event.TmfEventType;
/**
* The CTF extension of the TMF event type
*
* @author Matthew khouzam
*/
public class CtfTmfEventType extends TmfEventType {
/**
* Constructor for CtfTmfEventType.
*
* @param eventName
* The event name
* @param content
* The event field
*/
public CtfTmfEventType(@NonNull String eventName, ITmfEventField content) {
super(eventName, content);
}
/**
* Method toString.
*
* @return String
*/
@Override
public String toString() {
return getName();
}
}