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 ELTConfigFileWizard extends Wizard implements INewWizard {
38: private IStructuredSelection selection;
39:
40: private IWorkbench workbench;
41:
42: private ETLConfigWizardPage mainPage;
43:
44: /**
45: * (non-Javadoc) Method declared on Wizard.
46: */
47: public void addPages() {
48: mainPage = new ETLConfigWizardPage(workbench, selection);
49: addPage(mainPage);
50: }
51:
52: /**
53: * (non-Javadoc) Method declared on IWorkbenchWizard
54: */
55: public void init(IWorkbench workbench,
56: IStructuredSelection selection) {
57: this .workbench = workbench;
58: this .selection = selection;
59: setWindowTitle(I18N.getString(Messages.NEW_ETL_CONFIG_FILE));
60: setDefaultPageImageDescriptor(Activator
61: .imageDescriptorFromPlugin(Activator.PLUGIN_ID,
62: "icons/full/wizban/openMessageFormatView.gif"));
63: }
64:
65: /**
66: * (non-Javadoc) Method declared on IWizard
67: */
68: public boolean performFinish() {
69: return mainPage.finish();
70: }
71: }
|