ctf: Fix some Sonar warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / internal / ctf / core / event / metadata / Messages.java
CommitLineData
4311ac8b
MAL
1/*******************************************************************************
2 * Copyright (c) 2013 Ericsson
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Marc-Andre Laperle - Initial API and implementation
10 *******************************************************************************/
11
12package org.eclipse.linuxtools.internal.ctf.core.event.metadata;
13
14import org.eclipse.osgi.util.NLS;
15
16@SuppressWarnings("javadoc")
17public class Messages extends NLS {
18
19 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.ctf.core.event.metadata.messages"; //$NON-NLS-1$
20
21 public static String IOStructGen_UnknownTraceAttributeWarning;
22 public static String IOStructGen_UnknownStreamAttributeWarning;
23 public static String IOStructGen_UnknownIntegerAttributeWarning;
24
0594c61c
AM
25 public static String TypeAlreadyDefined;
26 public static String StructAlreadyDefined;
27 public static String EnumAlreadyDefined;
28 public static String VariantAlreadyDefined;
29 public static String TraceDoesNotContainType;
30
4311ac8b
MAL
31 static {
32 // initialize resource bundle
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38}
This page took 0.029052 seconds and 5 git commands to generate.