Project

General

Profile

Download (1.04 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
 * Copyright (C) 2014 EDIT
4
 * European Distributed Institute of Taxonomy
5
 * http://www.e-taxonomy.eu
6
 *
7
 * The contents of this file are subject to the Mozilla Public License Version 1.1
8
 * See LICENSE.TXT at the top of this package for the full license terms.
9
 */
10
package eu.etaxonomy.taxeditor.navigation.search;
11

    
12
import org.eclipse.osgi.util.NLS;
13

    
14
/**
15
 * @author d.schild
16
 * @date 18.06.2014
17
 *
18
 */
19
public class Messages extends NLS {
20
    private static final String BUNDLE_NAME = "OSGI-INF/l10n/messages"; //$NON-NLS-1$
21
    public static String SearchBar_0;
22
    public static String SearchBar_1;
23
    public static String SearchBar_2;
24
    public static String SearchBar_3;
25
    public static String SearchBar_4;
26
    public static String SearchBar_6;
27
    public static String SearchBar_7;
28
    public static String SearchBar_8;
29
    public static String SearchBar_9;
30
    static {
31
        // initialize resource bundle
32
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33
    }
34

    
35
    private Messages() {
36
    }
37
}
(1-1/4)