tmf: Remove the ITmfEventTableColumns extension point
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.kernel.core / src / org / eclipse / tracecompass / internal / lttng2 / kernel / core / event / aspect / 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 * Contributors:
9 * Patrick Tassé - Initial API and implementation
10 *******************************************************************************/
11
12 package org.eclipse.tracecompass.internal.lttng2.kernel.core.event.aspect;
13
14 import org.eclipse.osgi.util.NLS;
15
16 @SuppressWarnings("javadoc")
17 public class Messages extends NLS {
18
19 private static final String BUNDLE_NAME =
20 "org.eclipse.tracecompass.internal.lttng2.kernel.core.event.aspect.messages"; //$NON-NLS-1$
21
22 public static String AspectName_Channel;
23
24 static {
25 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
26 }
27
28 private Messages() {
29 }
30 }
This page took 0.037887 seconds and 5 git commands to generate.