Project

General

Profile

Download (1.3 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.view.datasource;
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 CdmDataSourceViewPart_1;
22
    public static String CdmDataSourceViewPart_10;
23
    public static String CdmDataSourceViewPart_11;
24
    public static String CdmDataSourceViewPart_12;
25
    public static String CdmDataSourceViewPart_2;
26
    public static String CdmDataSourceViewPart_3;
27
    public static String CdmDataSourceViewPart_4;
28
    public static String CdmDataSourceViewPart_5;
29
    public static String CdmDataSourceViewPart_6;
30
    public static String CdmDataSourceViewPart_7;
31
    public static String CdmDataSourceViewPart_8;
32
    public static String CdmDataSourceViewPart_9;
33
    static {
34
        // initialize resource bundle
35
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
36
    }
37

    
38
    private Messages() {
39
    }
40
}
(6-6/6)