Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / 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.tracecompass.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 */
22 @NonNullByDefault
23 public 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$
40 /**
41 * Name of the variant according to the spec
42 */
43 String VARIANT_NAME = "v"; //$NON-NLS-1$
44 }
This page took 0.030963 seconds and 5 git commands to generate.