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

« back to all changes in this revision

Viewing changes to proctools/org.eclipse.linuxtools.sequoyah.device.base/src/org/eclipse/linuxtools/sequoyah/device/ui/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) 2008-2010 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
 * Daniel Pastore (Eldorado) - [289870] Moving and renaming Tml to Sequoyah
 
12
 ********************************************************************************/
 
13
 
 
14
package org.eclipse.linuxtools.sequoyah.device.ui;
 
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 = "org.eclipse.linuxtools.sequoyah.device.ui.messages"; //$NON-NLS-1$
 
23
        public static String LoginDialog_Label_Password;
 
24
        public static String LoginDialog_Label_User;
 
25
        public static String LoginDialog_Msg_Login_Invalid;
 
26
        public static String LoginDialog_Window_Message;
 
27
        public static String LoginDialog_Window_Title;
 
28
        public static String OpenConnectionDialog_Label_Host;
 
29
        public static String OpenConnectionDialog_Label_Port;
 
30
        public static String OpenConnectionDialog_Label_Protocol;
 
31
        public static String OpenConnectionDialog_Window_Message;
 
32
        public static String OpenConnectionDialog_Window_Title;
 
33
        static {
 
34
                // initialize resource bundle
 
35
                NLS.initializeMessages(BUNDLE_NAME, Messages.class);
 
36
        }
 
37
 
 
38
        private Messages() {
 
39
        }
 
40
}