Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/internal/wizards/makepersistent/OneToManyMappingPage.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/internal/wizards/makepersistent/OneToManyMappingPage.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/internal/wizards/makepersistent/OneToManyMappingPage.java b/jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/internal/wizards/makepersistent/OneToManyMappingPage.java
new file mode 100644
index 0000000000..68a863449b
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/internal/wizards/makepersistent/OneToManyMappingPage.java
@@ -0,0 +1,35 @@
+/*******************************************************************************
+ * 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.ui.internal.wizards.makepersistent;
+
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.jface.resource.ResourceManager;
+import org.eclipse.jface.wizard.IWizardPage;
+import org.eclipse.jpt.jpa.annotate.mapping.EntityRefPropertyElem;
+import org.eclipse.jpt.jpa.core.context.persistence.PersistenceUnit;
+
+public class OneToManyMappingPage extends EntityMappingPage
+{
+
+ public OneToManyMappingPage(PersistenceUnit persistenceUnit, ResourceManager resourceManager,IProject project, EntityRefPropertyElem refElem, IWizardPage nextPage)
+ {
+ super(persistenceUnit, resourceManager, project, refElem, nextPage);
+ }
+
+ @Override
+ protected void initFields()
+ {
+ super.initFields();
+ //refreshJoinProperties();
+ }
+
+}

Back to the top