01: /*
02: * ChainBuilder ESB
03: * Visual Enterprise Integration
04: *
05: * Copyright (C) 2006 Bostech Corporation
06: *
07: * This program is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU General Public License as published by the
09: * Free Software Foundation; either version 2 of the License, or (at your option)
10: * any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15: * for more details.
16: *
17: * You should have received a copy of the GNU General Public License along with
18: * this program; if not, write to the Free Software Foundation, Inc.,
19: * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20: *
21: *
22: * $Id$
23: */
24: package com.bostechcorp.cbesb.ui.ide.wizards;
25:
26: import org.eclipse.jface.viewers.IStructuredSelection;
27: import org.eclipse.jface.wizard.Wizard;
28: import org.eclipse.ui.INewWizard;
29: import org.eclipse.ui.IWorkbench;
30:
31: import com.bostechcorp.cbesb.common.i18n.I18N;
32: import com.bostechcorp.cbesb.common.i18n.Messages;
33: import com.bostechcorp.cbesb.ui.ide.Activator;
34:
35: /*
36: */
37: public class DataSourceMapperFileWizard extends Wizard implements
38: INewWizard {
39: private IStructuredSelection selection;
40:
41: private IWorkbench workbench;
42:
43: private DataSourceMapperMainPage mainPage;
44:
45: private DataSourceMapperSecondPage secondPage;
46:
47: /**
48: * (non-Javadoc) Method declared on Wizard.
49: */
50: public void addPages() {
51: mainPage = new DataSourceMapperMainPage(workbench, selection);
52: secondPage = new DataSourceMapperSecondPage(workbench,
53: selection);
54: addPage(mainPage);
55: addPage(secondPage);
56: }
57:
58: /**
59: * (non-Javadoc) Method declared on IWorkbenchWizard
60: */
61: public void init(IWorkbench workbench,
62: IStructuredSelection selection) {
63: this .workbench = workbench;
64: this .selection = selection;
65: setWindowTitle(I18N
66: .getString(Messages.NEW_DATA_SOURCE_MAPPER_FILE));
67: setDefaultPageImageDescriptor(Activator
68: .imageDescriptorFromPlugin(Activator.PLUGIN_ID,
69: "icons/full/wizban/openMessageFormatView.gif"));
70: }
71:
72: /**
73: * (non-Javadoc) Method declared on IWizard
74: */
75: public boolean performFinish() {
76: return mainPage.finish(
77: secondPage.getTextConnection().getText(), secondPage
78: .getComboType().getText(), secondPage
79: .getTextName().getText());
80: }
81: }
|