Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [pde-dev] Error in creating WizardPage!

Hi Leen,

My code is 
WizardNewProjectCreationPage page1 =
newWizardNewProjectCreationPage("Grammar Page");
Then in addPages I am adding this page

		super.addPages();		
		page1.setTitle("project");
		page1.setDescription("Project Creation");
		
		
		this.addPage(page1);
When I try to add this page , it throws the following error

Unhandled event loop exception
Reason:
org/eclipse/core/resources/ResourcesPlugin

If I instantiate a class which I have created by extending WizardPage
Then it works fine.






Back to the top