eclipse plugin: Move the Project stuff into its own package
This commit is contained in:
parent
7532db65fc
commit
98204d9daf
19 changed files with 26 additions and 18 deletions
|
@ -24,13 +24,13 @@ import org.eclipse.xtext.ui.editor.contentassist.ContentAssistContext;
|
|||
import org.eclipse.xtext.ui.editor.contentassist.ICompletionProposalAcceptor;
|
||||
import org.wesnoth.Logger;
|
||||
import org.wesnoth.preprocessor.Define;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.schema.SchemaParser;
|
||||
import org.wesnoth.schema.Tag;
|
||||
import org.wesnoth.schema.TagKey;
|
||||
import org.wesnoth.ui.WMLUiModule;
|
||||
import org.wesnoth.ui.WMLUtil;
|
||||
import org.wesnoth.ui.labeling.WMLLabelProvider;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.utils.StringUtils;
|
||||
import org.wesnoth.wml.WMLKey;
|
||||
import org.wesnoth.wml.WMLTag;
|
||||
|
|
|
@ -23,8 +23,8 @@ import org.eclipse.xtext.ui.editor.utils.EditorUtils;
|
|||
import org.eclipse.xtext.util.concurrent.IUnitOfWork;
|
||||
import org.wesnoth.Logger;
|
||||
import org.wesnoth.preprocessor.Define;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.ui.WMLUtil;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.wml.WMLMacroCall;
|
||||
import org.wesnoth.wml.WMLTag;
|
||||
|
||||
|
|
|
@ -22,10 +22,10 @@ import org.wesnoth.installs.WesnothInstallsUtils;
|
|||
import org.wesnoth.preferences.Preferences;
|
||||
import org.wesnoth.preferences.Preferences.Paths;
|
||||
import org.wesnoth.preprocessor.Define;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.ui.Messages;
|
||||
import org.wesnoth.ui.WMLUtil;
|
||||
import org.wesnoth.ui.emf.ObjectStorageAdapter;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.wml.WMLMacroCall;
|
||||
|
||||
|
||||
|
|
|
@ -41,6 +41,7 @@ Export-Package: org.wesnoth,
|
|||
org.wesnoth.preferences,
|
||||
org.wesnoth.preprocessor,
|
||||
org.wesnoth.product,
|
||||
org.wesnoth.projects,
|
||||
org.wesnoth.propertypages,
|
||||
org.wesnoth.schema,
|
||||
org.wesnoth.templates,
|
||||
|
|
|
@ -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.projects.ProjectCache;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.utils.PreprocessorUtils;
|
||||
import org.wesnoth.utils.ProjectCache;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.utils.WorkspaceUtils;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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.projects.ProjectCache;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.utils.AntUtils;
|
||||
import org.wesnoth.utils.PreprocessorUtils;
|
||||
import org.wesnoth.utils.ProjectCache;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.utils.ResourceUtils;
|
||||
import org.wesnoth.utils.StringUtils;
|
||||
import org.wesnoth.utils.WMLSaxHandler;
|
||||
|
|
|
@ -14,11 +14,11 @@ import org.eclipse.core.commands.AbstractHandler;
|
|||
import org.eclipse.core.commands.ExecutionEvent;
|
||||
import org.eclipse.core.resources.IProject;
|
||||
import org.wesnoth.Messages;
|
||||
import org.wesnoth.projects.ProjectCache;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.schema.SchemaParser;
|
||||
import org.wesnoth.templates.TemplateProvider;
|
||||
import org.wesnoth.utils.GUIUtils;
|
||||
import org.wesnoth.utils.ProjectCache;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
|
||||
|
||||
public class ReloadFilesHandler extends AbstractHandler
|
||||
|
|
|
@ -18,8 +18,8 @@ import org.eclipse.swt.SWT;
|
|||
import org.wesnoth.Constants;
|
||||
import org.wesnoth.Logger;
|
||||
import org.wesnoth.preferences.Preferences;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.utils.GUIUtils;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.utils.WorkspaceUtils;
|
||||
|
||||
public class WesnothInstallsUtils
|
||||
|
|
|
@ -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.projects;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.HashMap;
|
||||
|
@ -19,6 +19,8 @@ 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.utils.ResourceUtils;
|
||||
import org.wesnoth.wml.core.ConfigFile;
|
||||
import org.wesnoth.wml.core.Variable;
|
||||
|
|
@ -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.projects;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
@ -22,6 +22,7 @@ import org.wesnoth.Logger;
|
|||
import org.wesnoth.Messages;
|
||||
import org.wesnoth.templates.ReplaceableParameter;
|
||||
import org.wesnoth.templates.TemplateProvider;
|
||||
import org.wesnoth.utils.ResourceUtils;
|
||||
|
||||
|
||||
public class ProjectUtils
|
|
@ -16,8 +16,8 @@ import org.eclipse.swt.widgets.Label;
|
|||
import org.eclipse.ui.dialogs.PropertyPage;
|
||||
import org.wesnoth.installs.WesnothInstall;
|
||||
import org.wesnoth.installs.WesnothInstallsUtils;
|
||||
import org.wesnoth.utils.ProjectCache;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.projects.ProjectCache;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
|
||||
public class WesnothProjectPage extends PropertyPage
|
||||
{
|
||||
|
|
|
@ -20,6 +20,7 @@ import org.wesnoth.Messages;
|
|||
import org.wesnoth.installs.WesnothInstallsUtils;
|
||||
import org.wesnoth.preferences.Preferences;
|
||||
import org.wesnoth.preferences.Preferences.Paths;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
|
||||
|
||||
public class GameUtils
|
||||
|
|
|
@ -29,6 +29,7 @@ import org.wesnoth.Messages;
|
|||
import org.wesnoth.WesnothPlugin;
|
||||
import org.wesnoth.preferences.Preferences;
|
||||
import org.wesnoth.preferences.Preferences.Paths;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
|
||||
public class PreprocessorUtils
|
||||
{
|
||||
|
|
|
@ -39,6 +39,7 @@ import org.eclipse.swt.SWT;
|
|||
import org.wesnoth.Constants;
|
||||
import org.wesnoth.Logger;
|
||||
import org.wesnoth.Messages;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.templates.ReplaceableParameter;
|
||||
import org.wesnoth.templates.TemplateProvider;
|
||||
import org.xml.sax.InputSource;
|
||||
|
|
|
@ -43,6 +43,7 @@ import org.wesnoth.WesnothPlugin;
|
|||
import org.wesnoth.installs.WesnothInstallsUtils;
|
||||
import org.wesnoth.navigator.WesnothProjectsExplorer;
|
||||
import org.wesnoth.preferences.Preferences;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
|
||||
|
||||
public class WorkspaceUtils
|
||||
|
|
|
@ -20,10 +20,10 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
|||
import org.eclipse.jface.operation.IRunnableWithProgress;
|
||||
import org.wesnoth.Logger;
|
||||
import org.wesnoth.Messages;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.templates.ReplaceableParameter;
|
||||
import org.wesnoth.templates.TemplateProvider;
|
||||
import org.wesnoth.utils.Pair;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.utils.ResourceUtils;
|
||||
import org.wesnoth.wizards.NewWizardTemplate;
|
||||
|
||||
|
|
|
@ -20,10 +20,10 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
|||
import org.eclipse.jface.operation.IRunnableWithProgress;
|
||||
import org.wesnoth.Logger;
|
||||
import org.wesnoth.Messages;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.templates.ReplaceableParameter;
|
||||
import org.wesnoth.templates.TemplateProvider;
|
||||
import org.wesnoth.utils.Pair;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.utils.ResourceUtils;
|
||||
import org.wesnoth.wizards.NewWizardTemplate;
|
||||
|
||||
|
|
|
@ -31,10 +31,10 @@ import org.eclipse.ui.PlatformUI;
|
|||
import org.eclipse.ui.ide.IDE;
|
||||
import org.wesnoth.Logger;
|
||||
import org.wesnoth.Messages;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.templates.ReplaceableParameter;
|
||||
import org.wesnoth.templates.TemplateProvider;
|
||||
import org.wesnoth.utils.GUIUtils;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.utils.ResourceUtils;
|
||||
import org.wesnoth.utils.WorkspaceUtils;
|
||||
import org.wesnoth.wizards.NewWizardTemplate;
|
||||
|
|
|
@ -18,7 +18,7 @@ import org.eclipse.swt.widgets.Control;
|
|||
import org.eclipse.swt.widgets.Label;
|
||||
import org.eclipse.swt.widgets.Text;
|
||||
import org.wesnoth.Messages;
|
||||
import org.wesnoth.utils.ProjectUtils;
|
||||
import org.wesnoth.projects.ProjectUtils;
|
||||
import org.wesnoth.wizards.NewWizardPageTemplate;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue