eclipse plugin: move the wizards to their own packages
This commit is contained in:
parent
a5d2ff37aa
commit
d554b88413
6 changed files with 13 additions and 7 deletions
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
{
|
|
@ -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;
|
|
@ -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
|
||||
{
|
|
@ -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;
|
|
@ -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;
|
Loading…
Add table
Reference in a new issue