Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/wizards/Messages.java')
-rw-r--r--bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/wizards/Messages.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/wizards/Messages.java b/bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/wizards/Messages.java
new file mode 100644
index 000000000..b207d1464
--- /dev/null
+++ b/bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/wizards/Messages.java
@@ -0,0 +1,34 @@
+/*******************************************************************************
+ * Copyright (c) 2013 BestSolution.at and others.
+ * 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:
+ * Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.fx.ide.fxml.wizards;
+
+import org.eclipse.osgi.util.NLS;
+
+@SuppressWarnings("javadoc")
+public class Messages extends NLS {
+ private static final String BUNDLE_NAME = "org.eclipse.fx.ide.fxml.wizards.messages"; //$NON-NLS-1$
+
+ public static String FXMLWizardPage_0;
+ public static String FXMLWizardPage_1;
+ public static String FXMLWizardPage_2;
+ public static String FXMLWizardPage_3;
+ public static String FXMLWizardPage_4;
+ public static String FXMLWizardPage_5;
+ public static String FXMLWizardPage_6;
+ public static String FXMLWizardPage_9;
+ static {
+ // initialize resource bundle
+ NLS.initializeMessages(BUNDLE_NAME, Messages.class);
+ }
+
+ private Messages() {
+ }
+}

Back to the top