Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/src/org/eclipse/jpt/jpa/eclipselink/ui/internal/ddlgen/wizards/GenerationOutputModeWizardPage.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/src/org/eclipse/jpt/jpa/eclipselink/ui/internal/ddlgen/wizards/GenerationOutputModeWizardPage.java136
1 files changed, 0 insertions, 136 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/src/org/eclipse/jpt/jpa/eclipselink/ui/internal/ddlgen/wizards/GenerationOutputModeWizardPage.java b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/src/org/eclipse/jpt/jpa/eclipselink/ui/internal/ddlgen/wizards/GenerationOutputModeWizardPage.java
deleted file mode 100644
index 692e54cf83..0000000000
--- a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/src/org/eclipse/jpt/jpa/eclipselink/ui/internal/ddlgen/wizards/GenerationOutputModeWizardPage.java
+++ /dev/null
@@ -1,136 +0,0 @@
-/*******************************************************************************
-* Copyright (c) 2011 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.eclipselink.ui.internal.ddlgen.wizards;
-
-import org.eclipse.jface.dialogs.Dialog;
-import org.eclipse.jface.wizard.WizardPage;
-import org.eclipse.jpt.jpa.eclipselink.core.context.persistence.schema.generation.OutputMode;
-import org.eclipse.jpt.jpa.eclipselink.ui.internal.EclipseLinkUiMessages;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.events.SelectionEvent;
-import org.eclipse.swt.events.SelectionListener;
-import org.eclipse.swt.layout.GridData;
-import org.eclipse.swt.layout.GridLayout;
-import org.eclipse.swt.widgets.Button;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-import org.eclipse.swt.widgets.Group;
-
-/**
- * GenerationOutputModeWizardPage
- */
-public class GenerationOutputModeWizardPage extends WizardPage {
-
- GenerationOutputModeGroup outputModeGroup;
-
- public GenerationOutputModeWizardPage() {
- super("Database Schema"); //$NON-NLS-1$
- this.setTitle(EclipseLinkUiMessages.GenerationOutputModeWizardPage_title);
- this.setMessage(EclipseLinkUiMessages.GenerationOutputModeWizardPage_desc);
- }
-
- public void createControl(Composite parent) {
- this.setPageComplete(true);
- this.setControl(this.buildTopLevelControl(parent));
- }
-
- private Control buildTopLevelControl(Composite parent) {
- Composite composite = new Composite(parent, SWT.NULL);
- composite.setLayout(new GridLayout());
- this.outputModeGroup = new GenerationOutputModeGroup(composite);
- Dialog.applyDialogFont(parent);
- return composite;
- }
-
- // ********** intra-wizard methods **********
-
- public OutputMode getOutputMode() {
- return this.outputModeGroup.getOutputMode();
- }
-
-
- // ********** Generation OutputMode Group **********
-
- class GenerationOutputModeGroup {
- private OutputMode outputMode;
-
- private final Button databaseButton;
- private final Button sqlScriptButton;
- private final Button bothButton;
-
- // ********** constructor **********
-
- private GenerationOutputModeGroup(Composite parent) {
- super();
- Group outputModeGroup = new Group(parent, SWT.NONE);
- GridLayout layout = new GridLayout(3, false);
- outputModeGroup.setLayout(layout);
- outputModeGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
- outputModeGroup.setText(EclipseLinkUiMessages.GenerationOutputModeWizardPage_generationOutputMode);
- // TODO PlatformUI.getWorkbench().getHelpSystem().setHelp(this.group, JpaHelpContextIds.XXX);
-
- SelectionListener outputModeButtonListener = this.buildOutputModeRadioButtonListener();
-
- this.databaseButton = this.buildRadioButton(outputModeGroup,
- EclipseLinkUiMessages.OutputModeComposite_database, outputModeButtonListener, 3);
-
- this.sqlScriptButton = this.buildRadioButton(outputModeGroup,
- EclipseLinkUiMessages.OutputModeComposite_sql_script, outputModeButtonListener, 3);
-
- this.bothButton = this.buildRadioButton(outputModeGroup,
- EclipseLinkUiMessages.OutputModeComposite_both, outputModeButtonListener, 3);
-
- this.databaseButton.setSelection(true);
- this.outputModeButtonChanged();
- }
-
- // ********** listeners **********
-
- private SelectionListener buildOutputModeRadioButtonListener() {
- return new SelectionListener() {
- public void widgetDefaultSelected(SelectionEvent event) {
- this.widgetSelected(event);
- }
- public void widgetSelected(SelectionEvent event) {
- outputModeButtonChanged();
- }
- };
- }
-
- // ********** internal methods **********
-
- private void outputModeButtonChanged() {
-
- if(this.databaseButton.getSelection()) {
- this.outputMode = OutputMode.database;
- }
- else if(this.sqlScriptButton.getSelection()) {
- this.outputMode = OutputMode.sql_script;
- }
- else if(this.bothButton.getSelection()) {
- this.outputMode = OutputMode.both;
- }
- }
-
- private Button buildRadioButton(Composite parent, String text, SelectionListener listener, int horizontalSpan) {
- Button radioButton = new Button(parent, SWT.RADIO);
- GridData gridData = new GridData();
- gridData.horizontalSpan = horizontalSpan;
- radioButton.setLayoutData(gridData);
- radioButton.setText(text);
- radioButton.addSelectionListener(listener);
- return radioButton;
- }
-
- private OutputMode getOutputMode() {
- return this.outputMode;
- }
- }
-}

Back to the top