ctf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / linuxtools / ctf / core / event / types / IEventHeaderDeclaration.java
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
13 package org.eclipse.linuxtools.ctf.core.event.types;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18 * Event header declaration abstract class
19 *
20 * @author Matthew Khouzam
21 * @since 3.1
22 */
23 @NonNullByDefault
24 public interface IEventHeaderDeclaration extends IDeclaration {
25 /**
26 * The id of an event
27 */
28 String ID = "id"; //$NON-NLS-1$
29 /**
30 * The name of a timestamp field
31 */
32 String TIMESTAMP = "timestamp"; //$NON-NLS-1$
33 /**
34 * Extended header
35 */
36 String EXTENDED = "extended"; //$NON-NLS-1$
37 /**
38 * Compact header (not to be confused with compact vs large)
39 */
40 String COMPACT = "compact"; //$NON-NLS-1$
41 }
This page took 0.034949 seconds and 5 git commands to generate.