Skip to main content
summaryrefslogtreecommitdiffstats
blob: df807f50ca2bebaaa39092bc4018badcad2e92e7 (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
/*******************************************************************************
 * Copyright (c) 2010 Oracle. 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:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.core.internal.validation;

import org.eclipse.osgi.util.NLS;

public class JpaValidationDescriptionMessages {
	
	public static String DOES_NOT_MATCH_JOIN_TABLE;
	public static String DOES_NOT_MATCH_COLLECTION_TABLE;
	public static String NOT_VALID_FOR_THIS_ENTITY;
	
	public static String ATTRIBUTE_DESC;
	public static String VIRTUAL_ATTRIBUTE_DESC;

	public static String ON_MAPPED_SUPERCLASS;
	public static String ON_EMBEDDABLE;


	private static final String BUNDLE_NAME = "jpa_validation_description"; //$NON-NLS-1$
	private static final Class<?> BUNDLE_CLASS = JpaValidationDescriptionMessages.class;
	static {
		NLS.initializeMessages(BUNDLE_NAME, BUNDLE_CLASS);
	}

	private JpaValidationDescriptionMessages() {
		throw new UnsupportedOperationException();
	}
}

Back to the top