~ubuntu-branches/ubuntu/utopic/eclipse-linuxtools/utopic

« back to all changes in this revision

Viewing changes to gcov/org.eclipse.linuxtools.gcov.core/src/org/eclipse/linuxtools/internal/gcov/parser/Messages.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2014-05-12 18:11:40 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140512181140-w237r3vsah1tmybz
Tags: 2.2.1-1
* New upstream release.
* Refreshed d/patches.
* Removed eclipse-cdt-valgrind-remote package, all its functionality
  is now provided by eclipse-cdt-profiling-framework-remote.
* Added remove-license-feature.patch.
* Bump Standards-Version to 3.9.5.
* Enable eclipse-changelog package.
* Enable eclipse-rpm-editor package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2013 Red Hat Inc.
 
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
 *     Red Hat Inc. - initial API and implementation
 
10
 *******************************************************************************/
 
11
package org.eclipse.linuxtools.internal.gcov.parser;
 
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.gcov.parser.messages"; //$NON-NLS-1$
 
17
        public static String CovManager_Parsing_Done;
 
18
        public static String CovManager_Retrieval_Error;
 
19
        public static String CovManager_Strings;
 
20
        public static String CovManager_Summary;
 
21
        public static String CovManager_No_Funcs_Error;
 
22
        public static String CovManager_No_FilePath_Error;
 
23
 
 
24
        public static String GcdaRecordsParser_content_inconsistent;
 
25
        public static String GcdaRecordsParser_func_block_empty;
 
26
        public static String GcdaRecordsParser_func_counter_error;
 
27
        public static String GcdaRecordsParser_magic_num_error;
 
28
        public static String GcdaRecordsParser_checksum_error;
 
29
        public static String GcdaRecordsParser_func_not_found;
 
30
        public static String GcnoRecordsParser_null_string;
 
31
        public static String GcnoRecordsParser_magic_num_error;
 
32
 
 
33
        static {
 
34
                // initialize resource bundle
 
35
                NLS.initializeMessages(BUNDLE_NAME, Messages.class);
 
36
        }
 
37
 
 
38
        private Messages() {
 
39
        }
 
40
}