]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/jdt-before/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchMessages.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-before / ui refactoring / org / eclipse / jdt / internal / ui / refactoring / nls / search / NLSSearchMessages.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2010 IBM Corporation and others.
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  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.jdt.internal.ui.refactoring.nls.search;
12
13 import org.eclipse.osgi.util.NLS;
14
15
16 /**
17  * Helper class to get NLSed messages.
18  */
19 final class NLSSearchMessages extends NLS {
20
21         private static final String BUNDLE_NAME= NLSSearchMessages.class.getName();
22
23         private NLSSearchMessages() {
24                 // Do not instantiate
25         }
26
27         public static String NLSSearchQuery_label;
28         public static String NLSSearchQuery_oneProblemInScope_description;
29         public static String NLSSearchQuery_propertiesNotExists;
30         public static String NLSSearchQuery_wrapperNotExists;
31         public static String NLSSearchQuery_xProblemsInScope_description;
32         public static String NLSSearchQuery_error;
33
34         public static String NLSSearchResultCollector_duplicateKeys;
35         public static String NLSSearchResultCollector_unusedKeys;
36         public static String NLSSearchResultLabelProvider2_undefinedKeys;
37         public static String NLSSearchResultRequestor_searching;
38
39         public static String SearchOperation_pluralLabelPatternPostfix;
40         public static String SearchOperation_singularLabelPostfix;
41
42         static {
43                 NLS.initializeMessages(BUNDLE_NAME, NLSSearchMessages.class);
44         }
45 }