Merge branch 'hotfix/4.5.1'
[taxeditor.git] / eu.etaxonomy.taxeditor.navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / search / Messages.java
1 /**
2 * Copyright (C) 2014 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.navigation.search;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * @author d.schild
15 * @date 18.06.2014
16 *
17 */
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = "OSGI-INF/l10n/messages"; //$NON-NLS-1$
20 public static String SearchBar_0;
21 public static String SearchBar_1;
22 public static String SearchBar_2;
23 public static String SearchBar_3;
24 public static String SearchBar_4;
25 public static String SearchBar_6;
26 public static String SearchBar_7;
27 public static String SearchBar_8;
28 public static String SearchBar_9;
29 static {
30 // initialize resource bundle
31 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
32 }
33
34 private Messages() {
35 }
36 }