7473266a55b52e81f2949bfc3a8916f8a4698e8a
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / internal / ctf / core / event / metadata / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 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
12 package org.eclipse.tracecompass.internal.ctf.core.event.metadata;
13
14 import org.eclipse.osgi.util.NLS;
15
16 @SuppressWarnings("javadoc")
17 public final class Messages extends NLS {
18
19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.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
25 static {
26 // initialize resource bundle
27 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
28 }
29
30 private Messages() {
31 }
32 }
This page took 0.030442 seconds and 4 git commands to generate.