Skip to main content
summaryrefslogtreecommitdiffstats
blob: 004530e749511794e3d47b1d765d65c579325c66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2009,2010 Alena Laskavaia 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Alena Laskavaia  - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.codan.internal.ui;

import org.eclipse.osgi.util.NLS;

/**
 * Externalized messages
 */
public class CodanUIMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.cdt.codan.internal.ui.messages"; //$NON-NLS-1$
	public static String BuildPropertyPage_RunAsYouType;
	public static String BuildPropertyPage_RunWithBuild;
	public static String CheckedTreeEditor_SelectionCannotBeEmpty;
	public static String CodanPreferencePage_Customize;
	public static String CodanPreferencePage_Description;
	public static String CodanPreferencePage_HasPreferences;
	public static String CodanPreferencePage_Info;
	public static String CodanPreferencePage_MessageLabel;
	public static String CodanPreferencePage_NoInfo;
	public static String CodanPreferencePage_Parameters;
	public static String ProblemsTreeEditor_NameColumn;
	public static String ProblemsTreeEditor_Problems;
	public static String ProblemsTreeEditor_SeverityColumn;
	public static String OverlayPage_Use_Workspace_Settings;
	public static String OverlayPage_Use_Project_Settings;
	public static String OverlayPage_Configure_Workspace_Settings;
	public static String PropertyStore_Cannot_write_resource_property;
	public static String CustomizeProblemComposite_TabParameters;
	public static String CustomizeProblemComposite_TabScope;
	public static String CustomizeProblemDialog_Message;
	public static String CustomizeProblemDialog_Title;
	public static String Job_TitleRunningAnalysis;
	public static String ParametersComposite_NewValue;
	public static String ParametersComposite_None;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, CodanUIMessages.class);
	}

	private CodanUIMessages() {
	}
}

Back to the top