Import lttng.kernel.core plugins from Scope
[deliverable/tracecompass.git] / lttng / org.lttng.scope.lttng.kernel.core / src / org / lttng / scope / lttng / kernel / core / views / timegraph / resources / Messages.java
1 /*
2 * Copyright (C) 2016-2017 EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 */
9
10 package org.lttng.scope.lttng.kernel.core.views.timegraph.resources;
11
12 import org.eclipse.jdt.annotation.NonNullByDefault;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Messages class
17 *
18 * @author Alexandre Montplaisir
19 * @noreference Message class
20 */
21 @SuppressWarnings("javadoc")
22 @NonNullByDefault({})
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
26
27 public static String resourcesCpuIrqProviderName;
28 public static String resourcesIrqProviderName;
29
30 static {
31 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
32 }
33
34 private Messages() {
35 }
36 }
This page took 0.031235 seconds and 5 git commands to generate.