eclipse plugin: move the wizards to their own packages

This commit is contained in:
Timotei Dolean 2010-07-05 18:15:59 +00:00
parent a5d2ff37aa
commit d554b88413
6 changed files with 13 additions and 7 deletions

View file

@ -223,7 +223,7 @@
</wizard>
<wizard
category="wesnoth.eclipse.newWizards"
class="wesnoth_eclipse_plugin.wizards.EraNewWizard"
class="wesnoth_eclipse_plugin.wizards.era.EraNewWizard"
icon="icons/wesnoth-icon_16.png"
id="wesnoth_eclipse_plugin.wizards.eraNewWizard"
name="Wesnoth Era"
@ -231,7 +231,7 @@
</wizard>
<wizard
category="wesnoth.eclipse.newWizards"
class="wesnoth_eclipse_plugin.wizards.FactionNewWizard"
class="wesnoth_eclipse_plugin.wizards.faction.FactionNewWizard"
icon="icons/wesnoth-icon_16.png"
id="wesnoth_eclipse_plugin.wizard.factionNewWizard"
name="Wesnoth Faction"

View file

@ -2,7 +2,7 @@
* @author Timotei Dolean
*
*/
package wesnoth_eclipse_plugin.wizards;
package wesnoth_eclipse_plugin.wizards.era;
import java.io.ByteArrayInputStream;
import java.io.IOException;
@ -27,6 +27,9 @@ import org.eclipse.ui.ide.IDE;
import wesnoth_eclipse_plugin.utils.GUIUtils;
import wesnoth_eclipse_plugin.utils.WorkspaceUtils;
import wesnoth_eclipse_plugin.wizards.NewWizardTemplate;
import wesnoth_eclipse_plugin.wizards.ReplaceableParameter;
import wesnoth_eclipse_plugin.wizards.TemplateProvider;
public class EraNewWizard extends NewWizardTemplate
{

View file

@ -2,7 +2,7 @@
* @author Timotei Dolean
*
*/
package wesnoth_eclipse_plugin.wizards;
package wesnoth_eclipse_plugin.wizards.era;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IResource;

View file

@ -2,7 +2,7 @@
* @author Timotei Dolean
*
*/
package wesnoth_eclipse_plugin.wizards;
package wesnoth_eclipse_plugin.wizards.faction;
import java.io.ByteArrayInputStream;
import java.io.IOException;
@ -27,6 +27,9 @@ import org.eclipse.ui.ide.IDE;
import wesnoth_eclipse_plugin.utils.GUIUtils;
import wesnoth_eclipse_plugin.utils.WorkspaceUtils;
import wesnoth_eclipse_plugin.wizards.NewWizardTemplate;
import wesnoth_eclipse_plugin.wizards.ReplaceableParameter;
import wesnoth_eclipse_plugin.wizards.TemplateProvider;
public class FactionNewWizard extends NewWizardTemplate
{

View file

@ -2,7 +2,7 @@
* @author Timotei Dolean
*
*/
package wesnoth_eclipse_plugin.wizards;
package wesnoth_eclipse_plugin.wizards.faction;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IResource;

View file

@ -2,7 +2,7 @@
* @author Timotei Dolean
*
*/
package wesnoth_eclipse_plugin.wizards;
package wesnoth_eclipse_plugin.wizards.faction;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.swt.SWT;