eclipse plugin: Move 'PreprocessorUtils' to a better package

This commit is contained in:
Timotei Dolean 2011-06-29 18:47:40 +00:00
parent 98204d9daf
commit 3980bafaec
9 changed files with 12 additions and 8 deletions

View file

@ -18,9 +18,9 @@ import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
import org.wesnoth.preprocessor.PreprocessorUtils;
import org.wesnoth.projects.ProjectCache;
import org.wesnoth.projects.ProjectUtils;
import org.wesnoth.utils.PreprocessorUtils;
import org.wesnoth.utils.WorkspaceUtils;
/**

View file

@ -10,7 +10,7 @@ package org.wesnoth.action;
import org.eclipse.core.resources.IFile;
import org.eclipse.jface.action.IAction;
import org.wesnoth.utils.PreprocessorUtils;
import org.wesnoth.preprocessor.PreprocessorUtils;
import org.wesnoth.utils.WMLTools;
import org.wesnoth.utils.WorkspaceUtils;
import org.wesnoth.utils.WMLTools.Tools;

View file

@ -9,7 +9,7 @@
package org.wesnoth.action;
import org.eclipse.jface.action.IAction;
import org.wesnoth.utils.PreprocessorUtils;
import org.wesnoth.preprocessor.PreprocessorUtils;
import org.wesnoth.utils.WorkspaceUtils;

View file

@ -9,7 +9,7 @@
package org.wesnoth.action;
import org.eclipse.jface.action.IAction;
import org.wesnoth.utils.PreprocessorUtils;
import org.wesnoth.preprocessor.PreprocessorUtils;
import org.wesnoth.utils.WorkspaceUtils;

View file

@ -31,10 +31,10 @@ import org.wesnoth.Messages;
import org.wesnoth.installs.WesnothInstallsUtils;
import org.wesnoth.preferences.Preferences;
import org.wesnoth.preferences.Preferences.Paths;
import org.wesnoth.preprocessor.PreprocessorUtils;
import org.wesnoth.projects.ProjectCache;
import org.wesnoth.projects.ProjectUtils;
import org.wesnoth.utils.AntUtils;
import org.wesnoth.utils.PreprocessorUtils;
import org.wesnoth.utils.ResourceUtils;
import org.wesnoth.utils.StringUtils;
import org.wesnoth.utils.WMLSaxHandler;

View file

@ -4,7 +4,6 @@ import org.eclipse.core.runtime.IPath;
import org.eclipse.ui.IEditorLauncher;
import org.wesnoth.utils.GameUtils;
public class MapFileEditor implements IEditorLauncher
{
@Override

View file

@ -6,7 +6,7 @@
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.wesnoth.utils;
package org.wesnoth.preprocessor;
import java.io.File;
import java.io.IOException;
@ -30,6 +30,10 @@ import org.wesnoth.WesnothPlugin;
import org.wesnoth.preferences.Preferences;
import org.wesnoth.preferences.Preferences.Paths;
import org.wesnoth.projects.ProjectUtils;
import org.wesnoth.utils.EditorUtils;
import org.wesnoth.utils.ExternalToolInvoker;
import org.wesnoth.utils.ResourceUtils;
import org.wesnoth.utils.WorkspaceUtils;
public class PreprocessorUtils
{

View file

@ -19,7 +19,7 @@ import org.wesnoth.Constants;
import org.wesnoth.Logger;
import org.wesnoth.preferences.Preferences;
import org.wesnoth.preprocessor.Define;
import org.wesnoth.utils.PreprocessorUtils;
import org.wesnoth.preprocessor.PreprocessorUtils;
import org.wesnoth.utils.ResourceUtils;
import org.wesnoth.wml.core.ConfigFile;
import org.wesnoth.wml.core.Variable;

View file

@ -39,6 +39,7 @@ import org.eclipse.swt.SWT;
import org.wesnoth.Constants;
import org.wesnoth.Logger;
import org.wesnoth.Messages;
import org.wesnoth.preprocessor.PreprocessorUtils;
import org.wesnoth.projects.ProjectUtils;
import org.wesnoth.templates.ReplaceableParameter;
import org.wesnoth.templates.TemplateProvider;