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

« back to all changes in this revision

Viewing changes to proctools/org.eclipse.linuxtools.sequoyah.device/src/org/eclipse/linuxtools/sequoyah/device/tools/cpuload/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) 2009 Motorola Inc. All rights reserved.
 
3
 * This program and the accompanying materials are made available under the terms
 
4
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 
5
 * available at http://www.eclipse.org/legal/epl-v10.html
 
6
 *
 
7
 * Initial Contributor:
 
8
 * Otavio Ferranti (Motorola)
 
9
 *
 
10
 * Contributors:
 
11
 * {Name} (company) - description of contribution.
 
12
 ********************************************************************************/
 
13
 
 
14
package org.eclipse.linuxtools.sequoyah.device.tools.cpuload;
 
15
 
 
16
import org.eclipse.osgi.util.NLS;
 
17
 
 
18
/**
 
19
 * @author Otavio Ferranti
 
20
 */
 
21
public class Messages extends NLS {
 
22
        private static final String BUNDLE_NAME =
 
23
                        "org.eclipse.linuxtools.sequoyah.device.tools.cpuload.messages"; //$NON-NLS-1$
 
24
        public static String CpuLoadProcessor_Msg_Executing_the_command;
 
25
        public static String CpuLoadProcessor_Msg_Got_The_Result;
 
26
        public static String CpuLoadView_Action_Connect;
 
27
        public static String CpuLoadView_Action_Disconnect;
 
28
        public static String CpuLoadView_Action_Options;
 
29
        public static String CpuLoadView_Action_Pause;
 
30
        public static String CpuLoadView_Action_Run;
 
31
        public static String CpuLoadView_Col_Label_Cpu;
 
32
        public static String CpuLoadView_Col_label_HIrq;
 
33
        public static String CpuLoadView_Col_Label_Idle;
 
34
        public static String CpuLoadView_Col_Label_Nice;
 
35
        public static String CpuLoadView_Col_Label_SIrq;
 
36
        public static String CpuLoadView_Col_Label_System;
 
37
        public static String CpuLoadView_Col_Label_User_Mode;
 
38
        public static String CpuLoadView_Col_Label_Wait;
 
39
        public static String OptionsDialog_Label_Refresh_Rate;
 
40
        public static String OptionsDialog_Window_Message;
 
41
        public static String OptionsDialog_Window_Title;
 
42
        static {
 
43
                // initialize resource bundle
 
44
                NLS.initializeMessages(BUNDLE_NAME, Messages.class);
 
45
        }
 
46
 
 
47
        private Messages() {
 
48
        }
 
49
}