gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.ui / src / org / eclipse / linuxtools / internal / lttng2 / kernel / ui / viewers / events / Messages.java
CommitLineData
94cce698
AM
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 * Patrick Tassé - Initial API and implementation
10 *******************************************************************************/
11
34d760f4
FC
12package org.eclipse.linuxtools.internal.lttng2.kernel.ui.viewers.events;
13
14import org.eclipse.osgi.util.NLS;
15
27f3a03d 16@SuppressWarnings("javadoc")
34d760f4 17public class Messages extends NLS {
607e4c98
AF
18 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.lttng2.kernel.ui.viewers.events.messages"; //$NON-NLS-1$
19 public static String EventsTable_channelColumn;
20 public static String EventsTable_timestampColumn;
21 public static String EventsTable_typeColumn;
34d760f4 22 public static String EventsTable_contentColumn;
607e4c98
AF
23 static {
24 // initialize resource bundle
25 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
26 }
34d760f4 27
607e4c98
AF
28 private Messages() {
29 }
34d760f4 30}
This page took 0.041547 seconds and 5 git commands to generate.