Reputation: 837
I want to create a plug-in for eclipse consisting of a Wizard for creating a new file.
In the documentation I read about the WizardNewFileCreationPage class that is suitable
for my task.
It is supposed to be located in the package org.eclipse.ui.dialogs, however I can not find it.
Was it maybe moved in the latest version of eclipse to another location or removed completely?
I am using Kepler.
Upvotes: 0
Views: 55
Reputation: 111142
WizardNewFileCreationPage
is in the org.eclipse.ui.ide
plugin - so you will have add the plugin to your plugin's dependencies. As you said the package in org.eclipse.ui.dialogs
Upvotes: 1