Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » WizardPage appearing empty(Last WizardPage in a wizard always renders empty)
WizardPage appearing empty [message #897002] Fri, 20 July 2012 18:28
Orton V. Mathew is currently offline Orton V. MathewFriend
Messages: 1
Registered: July 2012
Junior Member
Hello,
I have a wizard that I add my WizardPages to in the plugin I'm developing.

        private WizardNewFileCreationPage iPageOne;
	private WizardPage iPageTwo;
	private WizardPage iPageThree;
	private WizardPage iPageFour;

        @Override
	public void addPages()
	{
		super.addPages();
		iPageOne = new <MyWizardPageImplementation1>;
		iPageTwo = new <MyWizardPageImplementation2>;
		iPageThree = new <MyWizardPageImplementation3>;
		iPageFour = new <MyWizardPageImplementation4>;
		addPage(iPageOne);
		addPage(iPageTwo);
		addPage(iPageThree);
		addPage(iPageFour);
	}


Strangely for me, the last wizard page(the one corresponding to iPageFour always renders empty). There's just nothing wrong my <MyWizardPageImplementation4>. I've even tried replacing with other wizard pages, like:
iPageFour = new <MyWizardPageImplementation3>;
No matter what, it always renders empty and I only see the correct title and description in this wizard page. I never faced such issues when I was developing the previous wizard pages! Can anyone out there help me understand this behaviour? Thanks in advance.

[Updated on: Fri, 20 July 2012 18:30]

Report message to a moderator

Previous Topic:[How to] Add special features to JavaEditor
Next Topic:Open connection Manager
Goto Forum:
  


Current Time: Thu Apr 25 20:33:08 GMT 2024

Powered by FUDForum. Page generated in 0.04077 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top