/******************************************************************************* * Copyright (c) 2010, 2014 Ericsson * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Patrick Tasse - Initial API and implementation *******************************************************************************/ package fr.inria.linuxtools.tmf.core.parsers.custom; /** * Event type for custom text traces. * * @author Patrick Tassé * @since 3.0 */ public class CustomTxtEventType extends CustomEventType { /** * Constructor * * @param definition * Custom text trace definition */ public CustomTxtEventType(CustomTxtTraceDefinition definition) { super(definition); } }