[Tmf][Ctf] Add descriptive fail to import messages.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / internal / ctf / core / event / metadata / CTFStrings.java
1 /*******************************************************************************
2 * Copyright (c) 2011-2012 Ericsson, Ecole Polytechnique de Montreal and others
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: Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11
12 package org.eclipse.linuxtools.internal.ctf.core.event.metadata;
13
14 /**
15 * Strings generated from the TSDL grammar. Note that they are static final so
16 * they get quarked. See CTF specs for more details
17 *
18 * @author Matthew Khouzam and All
19 *
20 */
21 public interface CTFStrings {
22
23 /** None */
24 public static final String NONE = "none"; //$NON-NLS-1$
25 /** Ascii */
26 public static final String ASCII = "ASCII"; //$NON-NLS-1$
27 /** UTF8 */
28 public static final String UTF8 = "UTF8"; //$NON-NLS-1$
29 /** b (for binary like b11010010 */
30 public static final String BIN = "b"; //$NON-NLS-1$
31 /** Binary */
32 public static final String BINARY = "binary"; //$NON-NLS-1$
33 /** Octal like o177 */
34 public static final String OCTAL_CTE = "o"; //$NON-NLS-1$
35 /** Octal like oct177 */
36 public static final String OCT = "oct"; //$NON-NLS-1$
37 /** Octal like octal177 */
38 public static final String OCTAL = "octal"; //$NON-NLS-1$
39 /** Pointer (memory address for all the hardcore Java gurus out there)*/
40 public static final String POINTER = "p"; //$NON-NLS-1$
41 /** X for hex */
42 public static final String X2 = "X"; //$NON-NLS-1$
43 /** x for hex */
44 public static final String X = "x"; //$NON-NLS-1$
45 /** hex */
46 public static final String HEX = "hex"; //$NON-NLS-1$
47 /** Hexadecimal */
48 public static final String HEXADECIMAL = "hexadecimal"; //$NON-NLS-1$
49 /** unsigned like in 10000ul */
50 public static final String UNSIGNED_CTE = "u"; //$NON-NLS-1$
51 /** Decimal */
52 public static final String DEC_CTE = "d"; //$NON-NLS-1$
53 /** Integer like 1000i */
54 public static final String INT_MOD = "i"; //$NON-NLS-1$
55 /** Decimal */
56 public static final String DEC = "dec"; //$NON-NLS-1$
57 /** Decimal */
58 public static final String DECIMAL = "decimal"; //$NON-NLS-1$
59 /** native for byteorders*/
60 public static final String NATIVE = "native"; //$NON-NLS-1$
61 /** network for byteorders*/
62 public static final String NETWORK = "network"; //$NON-NLS-1$
63 /** Big endian */
64 public static final String BE = "be"; //$NON-NLS-1$
65 /** Little endian */
66 public static final String LE = "le"; //$NON-NLS-1$
67 /** Alignment of a field */
68 public static final String ALIGN = "align"; //$NON-NLS-1$
69 /** Mantissa digits */
70 public static final String MANT_DIG = "mant_dig"; //$NON-NLS-1$
71 /** Exponent digits */
72 public static final String EXP_DIG = "exp_dig"; //$NON-NLS-1$
73 /** Loglevel */
74 public static final String LOGLEVEL2 = "loglevel"; //$NON-NLS-1$
75 /** Name */
76 public static final String NAME2 = "name"; //$NON-NLS-1$
77 /** Event context */
78 public static final String EVENT_CONTEXT = "event.context"; //$NON-NLS-1$
79 /** Fields */
80 public static final String FIELDS_STRING = "fields"; //$NON-NLS-1$
81 /** context */
82 public static final String CONTEXT = "context"; //$NON-NLS-1$
83 /** Stream ID */
84 public static final String STREAM_ID = "stream_id"; //$NON-NLS-1$
85 /** Packet context */
86 public static final String PACKET_CONTEXT = "packet.context"; //$NON-NLS-1$
87 /** ID */
88 public static final String ID = "id"; //$NON-NLS-1$
89 /** Packet Header */
90 public static final String PACKET_HEADER = "packet.header"; //$NON-NLS-1$
91 /** Event Header */
92 public static final String EVENT_HEADER = "event.header"; //$NON-NLS-1$
93 /** Byte order */
94 public static final String BYTE_ORDER = "byte_order"; //$NON-NLS-1$
95 /** UUID */
96 public static final String UUID_STRING = "uuid"; //$NON-NLS-1$
97 /** False */
98 public static final String FALSE2 = "FALSE"; //$NON-NLS-1$
99 /** False */
100 public static final String FALSE = "false"; //$NON-NLS-1$
101 /** True */
102 public static final String TRUE2 = "TRUE"; //$NON-NLS-1$
103 /** True */
104 public static final String TRUE = "true"; //$NON-NLS-1$
105 /** Minor (Vresion)*/
106 public static final String MINOR = "minor"; //$NON-NLS-1$
107 /** Major (Vresion)*/
108 public static final String MAJOR = "major"; //$NON-NLS-1$
109
110 }
This page took 0.032741 seconds and 5 git commands to generate.