rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / ctf / core / event / types / IEventHeaderDeclaration.java
CommitLineData
6c7592e1
MK
1/*******************************************************************************
2 * Copyright (c) 2014 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:
10 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
f357bcd4 13package org.eclipse.tracecompass.ctf.core.event.types;
6c7592e1
MK
14
15import org.eclipse.jdt.annotation.NonNullByDefault;
16
17/**
18 * Event header declaration abstract class
19 *
20 * @author Matthew Khouzam
6c7592e1
MK
21 */
22@NonNullByDefault
23public interface IEventHeaderDeclaration extends IDeclaration {
24 /**
25 * The id of an event
26 */
27 String ID = "id"; //$NON-NLS-1$
28 /**
29 * The name of a timestamp field
30 */
31 String TIMESTAMP = "timestamp"; //$NON-NLS-1$
32 /**
33 * Extended header
34 */
35 String EXTENDED = "extended"; //$NON-NLS-1$
36 /**
37 * Compact header (not to be confused with compact vs large)
38 */
39 String COMPACT = "compact"; //$NON-NLS-1$
66aa25f0
MK
40 /**
41 * Name of the variant according to the spec
42 */
43 String VARIANT_NAME = "v"; //$NON-NLS-1$
6c7592e1 44}
This page took 0.057665 seconds and 5 git commands to generate.