Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.annotate/src/org/eclipse/jpt/jpa/annotate/JptJpaAnnotateMessages.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.annotate/src/org/eclipse/jpt/jpa/annotate/JptJpaAnnotateMessages.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.annotate/src/org/eclipse/jpt/jpa/annotate/JptJpaAnnotateMessages.java b/jpa/plugins/org.eclipse.jpt.jpa.annotate/src/org/eclipse/jpt/jpa/annotate/JptJpaAnnotateMessages.java
new file mode 100644
index 0000000000..4b4e6ca53f
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.annotate/src/org/eclipse/jpt/jpa/annotate/JptJpaAnnotateMessages.java
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2013 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.jpa.annotate;
+
+import org.eclipse.osgi.util.NLS;
+
+public class JptJpaAnnotateMessages
+{
+ private static final String BUNDLE_NAME = "jpt_jpa_annotate"; //$NON-NLS-1$
+ private static final Class<?> BUNDLE_CLASS = JptJpaAnnotateMessages.class;
+ static {
+ NLS.initializeMessages(BUNDLE_NAME, BUNDLE_CLASS);
+ }
+
+ public static String ANNOTATE_JAVA_CLASS;
+
+ private JptJpaAnnotateMessages() {
+ throw new UnsupportedOperationException();
+ }
+
+}

Back to the top