tmf: Add Variant field handling in CtfTmfEventField
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / internal / tmf / core / Messages.java
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 *******************************************************************************/
9
10 package org.eclipse.linuxtools.internal.tmf.core;
11
12 import org.eclipse.osgi.util.NLS;
13
14 /**
15 * TMF Core message bundle
16 * @since 2.0
17 */
18 @SuppressWarnings("javadoc")
19 public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.tmf.core.messages"; //$NON-NLS-1$
21 public static String TmfCheckpointIndexer_EventsPerSecond;
22 public static String TmfCheckpointIndexer_Indexing;
23 public static String TmfEventField_UnsupportedType;
24 static {
25 // initialize resource bundle
26 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
27 }
28
29 private Messages() {
30 }
31 }
This page took 0.035669 seconds and 6 git commands to generate.