8a7b1297603b8da037644354b63eb763c7132b0d
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core / src / org / eclipse / tracecompass / tmf / ctf / core / event / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 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 * Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11
12 package org.eclipse.tracecompass.tmf.ctf.core.event;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Message bundle for tmf.ctf.core.event
18 *
19 * @author Matthew Khouzam
20 */
21 public class Messages extends NLS {
22
23 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ctf.core.event.messages"; //$NON-NLS-1$
24
25 /** Unsupported field type */
26 public static String CtfTmfEventField_UnsupportedType;
27
28 static {
29 // initialize resource bundle
30 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
31 }
32
33 private Messages() {
34 }
35 }
This page took 0.0325 seconds and 4 git commands to generate.