[WIP] CFV Refactor
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / internal / analysis / os / linux / core / views / controlflow2 / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 EfficiOS Inc., Alexandre Montplaisir
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
11 package org.eclipse.tracecompass.internal.analysis.os.linux.core.views.controlflow2;
12
13 import org.eclipse.jdt.annotation.NonNullByDefault;
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Messages class
18 *
19 * @author Alexandre Montplaisir
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 ControlFlowRenderProvider_State_WaitUnknown;
28 public static String ControlFlowRenderProvider_State_WaitBlocked;
29 public static String ControlFlowRenderProvider_State_WaitForCpu;
30 public static String ControlFlowRenderProvider_State_UserMode;
31 public static String ControlFlowRenderProvider_State_Syscall;
32 public static String ControlFlowRenderProvider_State_Interrupted;
33 public static String ControlFlowRenderProvider_State_Unknown;
34
35 public static String ControlFlowSortingModes_ByTid;
36 public static String ControlFlowSortingModes_ByThreadName;
37
38 public static String ControlFlowFilterModes_InactiveEntries;
39
40 static {
41 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
42 }
43
44 private Messages() {
45 }
46 }
This page took 0.031693 seconds and 5 git commands to generate.