4a9497265671a7619cfac55c23d3f53cfb681e08
[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 static {
26 // initialize resource bundle
27 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
28 }
29
30 private Messages() {
31 }
32 }
This page took 0.033182 seconds and 4 git commands to generate.