~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/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 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;
 
15
 
 
16
import org.eclipse.osgi.util.NLS;
 
17
 
 
18
/**
 
19
 * @author Otavio Ferranti
 
20
 *
 
21
 */
 
22
public class Messages extends NLS {
 
23
 
 
24
        private static String BUNDLE_NAME = "org.eclipse.linuxtools.sequoyah.device.messages"; //$NON-NLS-1$
 
25
        public static String TML_Plugin_Name;
 
26
        public static String TML_Error;
 
27
        public static String TML_Resource_Not_Available;
 
28
        
 
29
        static {
 
30
                // initialize resource bundle
 
31
                NLS.initializeMessages(BUNDLE_NAME, Messages.class);
 
32
        }       
 
33
}