[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.newcomer] Re: Calling a wizard
|
- From: Ankur Sharma <sharma.ankur@xxxxxxxxx>
- Date: Wed, 15 Apr 2009 19:20:25 +0530
- Newsgroups: eclipse.newcomer
- Organization: EclipseCorner
- User-agent: Thunderbird 2.0.0.21 (Windows/20090302)
adithya wrote:
I have created my own perspective which contains an icon and a wizard in
the File->New->Other->MyCategory - MyWizard
I want to call that wizard i.e. make it apppear when i click on the
'icon' created along with the perspective.
Is there a way??
Please let me know.
Adithya.
MyWizard wizard = new MyWizard ();
wizard.setWindowTitle("wizard title");
WizardDialog dialog = new WizardDialog(this.getShell(), wizard);
dialog.open();
--
hth,
Ankur..