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