Skip to content

Package: CoreProducerMessages

CoreProducerMessages

nameinstructionbranchcomplexitylinemethod
static {...}
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /**
2: * Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
3: * This program and the accompanying materials
4: * are made available under the terms of the Eclipse Public License v2.0
5: * which accompanies this distribution, and is available at
6: * https://www.eclipse.org/legal/epl-v2.0
7: *
8: * SPDX-License-Identifier: EPL-2.0
9: *
10: * Contributors:
11: * Thales Corporate Services S.A.S - initial API and implementation
12: */
13: package org.eclipse.egf.core.producer.l10n;
14:
15: import org.eclipse.osgi.util.NLS;
16:
17: public class CoreProducerMessages {
18:
19: private static final String BUNDLE_NAME = "org.eclipse.egf.core.producer.l10n.messages"; //$NON-NLS-1$
20:
21: private CoreProducerMessages() {
22: // Do not instantiate
23: }
24:
25: static {
26: // load message values from bundle file
27: NLS.initializeMessages(BUNDLE_NAME, CoreProducerMessages.class);
28: }
29:
30: public static String ProductionContext_null_key;
31:
32: public static String ProductionContext_null_class;
33:
34: public static String ProductionContext_wrong_type;
35:
36: public static String ProductionContext_unknown_key;
37:
38: public static String ProductionContext_non_unique_key;
39:
40: }