requirements: Implement all level for event names and fields
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / ITmfEventParser.java
CommitLineData
8c8bf09f 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2009, 2014 Ericsson
0283f7ff 3 *
8c8bf09f
ASL
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
0283f7ff 8 *
8c8bf09f
ASL
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
7e6347b0 11 * Francois Chouinard - Updated as per TMF Trace Model 1.0
8c8bf09f
ASL
12 *******************************************************************************/
13
2bdf0193 14package org.eclipse.tracecompass.tmf.core.trace;
8c8bf09f 15
2bdf0193 16import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
8c8bf09f
ASL
17
18/**
2848c377 19 * The generic trace parser in TMF.
0283f7ff 20 *
f7703ed6
FC
21 * @version 1.0
22 * @author Francois Chouinard
23 *
24 * @see ITmfEvent
25 * @see ITmfContext
8c8bf09f 26 */
6256d8ad 27public interface ITmfEventParser {
8c8bf09f 28
d5efe032
AF
29 /**
30 * Parses the trace event referenced by the context.
31 * The context should *not* be altered.
32 *
33 * @param context the trace context
34 * @return a parsed event (null if none)
35 */
36 ITmfEvent parseEvent(ITmfContext context);
7e6347b0 37
12c155f5 38}
This page took 0.092376 seconds and 5 git commands to generate.