summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/Messages.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/Messages.java')
-rw-r--r--plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/Messages.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/Messages.java b/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/Messages.java
new file mode 100644
index 0000000..cbf2b05
--- /dev/null
+++ b/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/Messages.java
@@ -0,0 +1,62 @@
1/*******************************************************************************
2 * Copyright (c) 2010 Intel Corporation.
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 * Intel - initial API and implementation
10 *******************************************************************************/
11package org.yocto.sdk.remotetools;
12
13import org.eclipse.osgi.util.NLS;
14
15public class Messages extends NLS {
16
17 private static final String BUNDLE_NAME = "org.yocto.sdk.remotetools.messages"; //$NON-NLS-1$
18
19 public static String ErrorNoSubsystem;
20 public static String ErrorConnectSubsystem;
21 public static String ErrorNoHost;
22 public static String ErrorNoRemoteService;
23
24 public static String ErrorOprofileViewer;
25 public static String ErrorOprofile;
26 public static String ErrorLttvGui;
27 public static String ErrorUstProject;
28
29 public static String InfoDownload;
30 public static String InfoUpload;
31
32 public static String BaseSettingDialog_Connection;
33 public static String BaseSettingDialog_New;
34 public static String BaseSettingDialog_Properties;
35 public static String Usttrace_Argument_Text;
36 public static String Usttrace_Application_Text;
37 public static String Usttrace_Trace_Loc_Text;
38 public static String Powertop_Time_Text;
39 public static String Powertop_ShowPid_Text;
40 public static String TerminalViewer_text;
41 //public static String Systemtap_KO_Text;
42 public static String Metadata_Location;
43 public static String Builddir_Location;
44 public static String User_ID;
45 public static String Remote_Host;
46 public static String Systemtap_Script;
47 public static String Systemtap_Args;
48 public static String Import_to_Project;
49
50 public static String LocalJob_Title;
51 public static String ErrorLocalJob;
52 public static String RemoteShellExec_1;
53 public static String RemoteShellExec_2;
54
55 static {
56 // initialize resource bundle
57 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
58 }
59
60 private Messages() {
61 }
62}