Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / internal / tmf / core / Messages.java
CommitLineData
b7952ebe 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
b7952ebe
PT
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
2bdf0193 10package org.eclipse.tracecompass.internal.tmf.core;
b7952ebe
PT
11
12import org.eclipse.osgi.util.NLS;
13
14/**
15 * TMF Core message bundle
b7952ebe
PT
16 */
17@SuppressWarnings("javadoc")
18public class Messages extends NLS {
2bdf0193 19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.core.messages"; //$NON-NLS-1$
b7952ebe
PT
20 public static String TmfCheckpointIndexer_EventsPerSecond;
21 public static String TmfCheckpointIndexer_Indexing;
91e7f946 22
b7952ebe
PT
23 static {
24 // initialize resource bundle
25 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
26 }
27
28 private Messages() {
29 }
30}
This page took 0.079627 seconds and 5 git commands to generate.