~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to valgrind/org.eclipse.linuxtools.valgrind.launch.remote/src/org/eclipse/linuxtools/internal/valgrind/launch/remote/Messages.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2010 Elliott Baron
 
3
 * All rights reserved. This program and the accompanying materials
 
4
 * are made available under the terms of the Eclipse Public License v1.0
 
5
 * which accompanies this distribution, and is available at
 
6
 * http://www.eclipse.org/legal/epl-v10.html
 
7
 *
 
8
 * Contributors:
 
9
 *    Elliott Baron <ebaron@fedoraproject.org> - initial API and implementation
 
10
 *******************************************************************************/ 
 
11
package org.eclipse.linuxtools.internal.valgrind.launch.remote;
 
12
 
 
13
import org.eclipse.osgi.util.NLS;
 
14
 
 
15
public class Messages extends NLS {
 
16
        private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.valgrind.launch.remote.messages"; //$NON-NLS-1$
 
17
        public static String ValgrindRemoteLaunchDelegate_error_launch_failed;
 
18
        public static String ValgrindRemoteLaunchDelegate_error_no_fs;
 
19
        public static String ValgrindRemoteLaunchDelegate_error_no_peers;
 
20
        public static String ValgrindRemoteLaunchDelegate_error_no_proc;
 
21
        public static String ValgrindRemoteLaunchDelegate_error_no_streams;
 
22
        public static String ValgrindRemoteLaunchDelegate_task_name;
 
23
        public static String ValgrindRemoteProcess_error_proc_not_term;
 
24
        public static String ValgrindRemoteTab_error_dest_wd;
 
25
        public static String ValgrindRemoteTab_error_location_VG;
 
26
        public static String ValgrindRemoteTab_error_peer;
 
27
        public static String ValgrindRemoteTab_error_tmp_dir;
 
28
        public static String ValgrindRemoteTab_header_ID;
 
29
        public static String ValgrindRemoteTab_header_name;
 
30
        public static String ValgrindRemoteTab_header_OS;
 
31
        public static String ValgrindRemoteTab_header_transport;
 
32
        public static String ValgrindRemoteTab_label_dest_wd;
 
33
        public static String ValgrindRemoteTab_label_location_VG;
 
34
        public static String ValgrindRemoteTab_label_peers;
 
35
        public static String ValgrindRemoteTab_label_tmp_dir;
 
36
        public static String ValgrindRemoteTab_tab_name;
 
37
        static {
 
38
                // initialize resource bundle
 
39
                NLS.initializeMessages(BUNDLE_NAME, Messages.class);
 
40
        }
 
41
 
 
42
        private Messages() {
 
43
        }
 
44
}