Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipselink/org.eclipse.emf.teneo.orm.eclipse/src/org/eclipse/emf/teneo/orm/eclipse/popup/actions/GenerateORMAction.java')
-rwxr-xr-xeclipselink/org.eclipse.emf.teneo.orm.eclipse/src/org/eclipse/emf/teneo/orm/eclipse/popup/actions/GenerateORMAction.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/eclipselink/org.eclipse.emf.teneo.orm.eclipse/src/org/eclipse/emf/teneo/orm/eclipse/popup/actions/GenerateORMAction.java b/eclipselink/org.eclipse.emf.teneo.orm.eclipse/src/org/eclipse/emf/teneo/orm/eclipse/popup/actions/GenerateORMAction.java
new file mode 100755
index 000000000..77c0c5107
--- /dev/null
+++ b/eclipselink/org.eclipse.emf.teneo.orm.eclipse/src/org/eclipse/emf/teneo/orm/eclipse/popup/actions/GenerateORMAction.java
@@ -0,0 +1,48 @@
+/**
+ * <copyright>
+ *
+ * Copyright (c) 2009 Springsite BV (The Netherlands) 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:
+ * Martin Taal - Initial API and implementation
+ *
+ * </copyright>
+ *
+ * $Id: GenerateORMAction.java,v 1.3 2009/05/06 20:20:25 mtaal Exp $
+ */
+
+package org.eclipse.emf.teneo.orm.eclipse.popup.actions;
+
+import java.util.HashMap;
+
+import org.eclipse.emf.teneo.PersistenceOptions;
+import org.eclipse.emf.teneo.annotations.pannotation.InheritanceType;
+import org.eclipse.emf.teneo.eclipse.Messages;
+import org.eclipse.emf.teneo.eclipse.genxml.GenerateMappingAction;
+import org.eclipse.emf.teneo.jpa.GenerateORM;
+import org.eclipse.jface.action.IAction;
+import org.eclipse.ui.IActionDelegate;
+
+/**
+ * Eclipse popup action to generate a orm file based on ecore files.
+ *
+ * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
+ * @version $Revision: 1.3 $
+ */
+
+public class GenerateORMAction extends GenerateMappingAction {
+ /**
+ * @see IActionDelegate#run(IAction)
+ */
+ @Override
+ public void run(IAction action) {
+ final HashMap<String, String> options = new HashMap<String, String>();
+ options.put(PersistenceOptions.INHERITANCE_MAPPING, InheritanceType.JOINED.getName());
+ super.run(action, "orm.xml", Messages.getString("teneo.generate.orm.file"), options, GenerateORM.class
+ .getName());
+ }
+} \ No newline at end of file

Back to the top