Adapt new kernel.core plugins to TMF
[deliverable/tracecompass.git] / lttng / org.lttng.scope.lttng.kernel.core / src / org / lttng / scope / lttng / kernel / core / views / timegraph / Messages.java
1 /*
2 * Copyright (C) 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;
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 noState;
28
29 public static String threadStateUnknown;
30 public static String threadStateWaitUnknown;
31 public static String threadStateWaitBlocked;
32 public static String threadStateWaitForCpu;
33 public static String threadSateUsermode;
34 public static String threadStateSyscall;
35 public static String threadStateInterrupted;
36
37 public static String cpuStateUnknown;
38 public static String cpuStateIdle;
39 public static String cpuStateIrqActive;
40 public static String cpuStateSoftIrqActive;
41 public static String cpuStateSoftIrqRaised;
42
43 static {
44 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
45 }
46
47 private Messages() {
48 }
49 }
This page took 0.031972 seconds and 5 git commands to generate.