eclipse plugin: move the utils to a dedicated folder

This commit is contained in:
Timotei Dolean 2010-05-23 10:15:45 +00:00
parent 6e0737290d
commit 3e39d49d01
4 changed files with 5 additions and 3 deletions

View file

@ -9,6 +9,8 @@ import java.io.FileReader;
import java.util.ArrayList;
import java.util.HashMap;
import wesnoth_eclipse_plugin.utils.StringUtils;
public class TemplateProvider {

View file

@ -1,7 +1,7 @@
/**
* @author Timotei Dolean
*/
package wesnoth_eclipse_plugin;
package wesnoth_eclipse_plugin.utils;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

View file

@ -25,8 +25,8 @@ import org.eclipse.ui.IWorkbench;
import wesnoth_eclipse_plugin.Logger;
import wesnoth_eclipse_plugin.ReplaceableParameter;
import wesnoth_eclipse_plugin.StringUtils;
import wesnoth_eclipse_plugin.TemplateProvider;
import wesnoth_eclipse_plugin.utils.StringUtils;
public class CampaignNewWizard extends Wizard implements INewWizard {

View file

@ -16,7 +16,7 @@ import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import wesnoth_eclipse_plugin.StringUtils;
import wesnoth_eclipse_plugin.utils.StringUtils;
public class CampaignPage2 extends WizardPage {
private Text txtAbbrev_;