blob: 20cca6f6cc3744570cb284c3bdff575cf01929b1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2016 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:
* Patrick Tasse - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.core.parsers.custom;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.tracecompass.tmf.core.event.ITmfEventField;
/**
* Event type for custom text traces.
*
* @author Patrick Tassé
*/
public class CustomTxtEventType extends CustomEventType {
/**
* Constructor
*
* @param eventName
* the event name
* @param root
* the root field
* @since 2.1
*/
public CustomTxtEventType(@NonNull String eventName, ITmfEventField root) {
super(eventName, root);
}
}