Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e7d2e3725661bddabd3b21a5a3b5873c7e72d938 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
 * Copyright (c) 2012 Mia-Software.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  	Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
 *  	Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
 */
package org.eclipse.papyrus.emf.facet.query.ocl.sdk.ui.internal;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.papyrus.emf.facet.query.ocl.sdk.ui.internal.messages"; //$NON-NLS-1$

	public static String Query_Context;
	public static String Return_type;
	public static String Type_returned;

	public static String OclDialogFactory_OclExpression;

	public static String OclExpression_Error;
	public static String OclQueryDialogFactory_Dialog_Desc;
	public static String OclQueryDialogFactory_Dialog_Title;
	public static String Expression;
	public static String Expression_return_type_not_valid;
	public static String Expression_not_valid;

	// OCL expression
	public static String Create_Ocl_expression;
	public static String Create_the;
	public static String OclExpression_Error_type;

	// OCL
	public static String console_badContextForQuery;
	public static String console_badContextForConstraint;
	static {
		// initialize resource bundle
		NLS.initializeMessages(Messages.BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}

Back to the top