Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/NewAssociationWizardPage.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/NewAssociationWizardPage.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/NewAssociationWizardPage.java b/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/NewAssociationWizardPage.java
deleted file mode 100644
index 68c328ac7b..0000000000
--- a/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/NewAssociationWizardPage.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007, 2009 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.ui.internal.wizards.gen;
-
-import java.util.HashMap;
-
-import org.eclipse.jface.wizard.WizardPage;
-import org.eclipse.jpt.gen.internal.ORMGenCustomizer;
-import org.eclipse.ui.PlatformUI;
-import org.eclipse.ui.help.IWorkbenchHelpSystem;
-
-
-public abstract class NewAssociationWizardPage extends WizardPage {
-
- protected ORMGenCustomizer customizer;
-
- public NewAssociationWizardPage(ORMGenCustomizer customizer, String name) {
- super(name);
- this.customizer = customizer ;
- }
-
- protected HashMap<String, Object> getWizardDataModel(){
- return ((NewAssociationWizard)this.getWizard()).getDataModel();
- }
-
- protected String getReferrerTableName(){
- return ((NewAssociationWizard)getWizard()).getReferrerTableName();
- }
-
- protected String getReferencedTableName(){
- return ((NewAssociationWizard)getWizard()).getReferencedTableName();
- }
-
- protected String getJoinTableName(){
- return ((NewAssociationWizard)getWizard()).getJoinTableName();
- }
-
- protected String getCardinality(){
- return ((NewAssociationWizard)getWizard()).getCardinality() ;
- }
-
- public void updateWithNewTables() {
- }
-
- /**
- * Returns the helps system.
- * @return The platform's help system
- */
- protected final IWorkbenchHelpSystem getHelpSystem() {
- return PlatformUI.getWorkbench().getHelpSystem();
- }
-}

Back to the top