analysis.ui: Add follow cpu context menu to resources view
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / actions / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 Ericsson
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.eclipse.tracecompass.internal.analysis.os.linux.ui.actions;
11
12 import org.eclipse.osgi.util.NLS;
13
14 /**
15 * Action messages
16 *
17 * @author Matthew Khouzam
18 */
19 public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.ui.actions.messages"; //$NON-NLS-1$
21 /**
22 * Follow message
23 */
24 public static String FollowThreadAction_follow;
25 /**
26 * Follow CPU message
27 */
28 public static String CpuSelectionAction_followCpu;
29 /**
30 * Stop following CPU
31 */
32 public static String CpuSelectionAction_unfollowCpu;
33 static {
34 // initialize resource bundle
35 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
36 }
37
38 private Messages() {
39 }
40 }
This page took 0.033614 seconds and 5 git commands to generate.