Index: /trunk/autoquest-plugin-core-test/src/test/java/de/ugoe/cs/autoquest/plugin/PluginLoaderTest.java
===================================================================
--- /trunk/autoquest-plugin-core-test/src/test/java/de/ugoe/cs/autoquest/plugin/PluginLoaderTest.java	(revision 928)
+++ /trunk/autoquest-plugin-core-test/src/test/java/de/ugoe/cs/autoquest/plugin/PluginLoaderTest.java	(revision 929)
@@ -25,5 +25,5 @@
 import de.ugoe.cs.autoquest.plugin.PluginLoader;
 import de.ugoe.cs.autoquest.plugin.PluginLoaderException;
-import de.ugoe.cs.autoquest.plugin.QuestPlugin;
+import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
 import static org.junit.Assert.*;
 
@@ -182,8 +182,8 @@
 		loader.load();
 		
-		Collection<QuestPlugin> plugins = loader.getPlugins();
+		Collection<AutoQUESTPlugin> plugins = loader.getPlugins();
 		
 		assertEquals(1, plugins.size());
-		QuestPlugin plugin = plugins.iterator().next();
+		AutoQUESTPlugin plugin = plugins.iterator().next();
 		assertNotNull(plugin);
 		assertEquals("Mock Plugin", plugin.getTitle());
@@ -198,5 +198,5 @@
 			loader.load();
 		} catch(PluginLoaderException e) {
-			e.getMessage().endsWith("not instance of QuestPlugin");
+			e.getMessage().endsWith("not instance of AutoQUESTPlugin");
 		}
 	}
Index: /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/AutoQUESTPlugin.java
===================================================================
--- /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/AutoQUESTPlugin.java	(revision 929)
+++ /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/AutoQUESTPlugin.java	(revision 929)
@@ -0,0 +1,51 @@
+//   Copyright 2012 Georg-August-Universität Göttingen, Germany
+//
+//   Licensed under the Apache License, Version 2.0 (the "License");
+//   you may not use this file except in compliance with the License.
+//   You may obtain a copy of the License at
+//
+//       http://www.apache.org/licenses/LICENSE-2.0
+//
+//   Unless required by applicable law or agreed to in writing, software
+//   distributed under the License is distributed on an "AS IS" BASIS,
+//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//   See the License for the specific language governing permissions and
+//   limitations under the License.
+
+package de.ugoe.cs.autoquest.plugin;
+
+import java.util.List;
+
+/**
+ * <p>
+ * Interface for AutoQUEST plug-ins.
+ * </p>
+ * 
+ * @author Steffen Herbold
+ * @version 1.0
+ */
+public interface AutoQUESTPlugin {
+
+	/**
+	 * <p>
+	 * Title of the plug-in.
+	 * </p>
+	 * 
+	 * @return the title
+	 */
+	public String getTitle();
+
+	/**
+	 * <p>
+	 * {@link List} of {@link String}s that contain the commands defined by this
+	 * plug-in. The List is immutable.
+	 * </p>
+	 * <p>
+	 * Consult the de.ugoe.cs.utils.console package of the java-utils project
+	 * for more information.
+	 * </p>
+	 * 
+	 * @return the command packages
+	 */
+	public List<String> getCommandPackages();
+}
Index: /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java
===================================================================
--- /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java	(revision 928)
+++ /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java	(revision 929)
@@ -33,5 +33,5 @@
 /**
  * <p>
- * This class provides the functionality to load QUEST plug-ins from a
+ * This class provides the functionality to load AutoQUEST plug-ins from a
  * pre-defined folder.
  * </p>
@@ -54,5 +54,5 @@
 	 * </p>
 	 */
-	private final Collection<QuestPlugin> plugins;
+	private final Collection<AutoQUESTPlugin> plugins;
 
 	/**
@@ -77,5 +77,5 @@
 		}
 		this.pluginDir = pluginDir;
-		plugins = new LinkedList<QuestPlugin>();
+		plugins = new LinkedList<AutoQUESTPlugin>();
 	}
 
@@ -112,5 +112,5 @@
 			}
 			try {
-				QuestPlugin pluginObject = (QuestPlugin) pluginClass
+				AutoQUESTPlugin pluginObject = (AutoQUESTPlugin) pluginClass
 						.newInstance();
 				plugins.add(pluginObject);
@@ -123,5 +123,5 @@
 			} catch (ClassCastException e) {
 				throw new PluginLoaderException("Class " + pluginClassName
-						+ " not instance of QuestPlugin");
+						+ " not instance of AutoQUESTPlugin");
 			}
 		}
@@ -232,5 +232,5 @@
 	/**
 	 * <p>
-	 * Checks if the name of a file indicates that it defines a QUEST plug-in.
+	 * Checks if the name of a file indicates that it defines a AutoQUEST plug-in.
 	 * The structure of valid plug-in filenames is
 	 * <code>quest-plugin-%PLUGIN_NAME%-version.jar</code>, where
@@ -241,5 +241,5 @@
 	 * @param filename
 	 *            filename that is checked
-	 * @return true if filename matches pattern of QUEST plug-in; false
+	 * @return true if filename matches pattern of AutoQUEST plug-in; false
 	 *         otherwise
 	 */
@@ -254,5 +254,5 @@
 	}
 	
-	public Collection<QuestPlugin> getPlugins() {
+	public Collection<AutoQUESTPlugin> getPlugins() {
 		return Collections.unmodifiableCollection(plugins);
 	}
Index: /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoaderException.java
===================================================================
--- /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoaderException.java	(revision 928)
+++ /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoaderException.java	(revision 929)
@@ -18,5 +18,5 @@
  * <p>
  * This exception is thrown in case there is an error during the loading of
- * QUEST plugins. Note that the failures during the loading may result in an
+ * AutoQUEST plugins. Note that the failures during the loading may result in an
  * invalid classpath and this exception should, therefore, be treated with
  * appropriate care.
Index: unk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/QuestPlugin.java
===================================================================
--- /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/QuestPlugin.java	(revision 928)
+++ 	(revision )
@@ -1,51 +1,0 @@
-//   Copyright 2012 Georg-August-Universität Göttingen, Germany
-//
-//   Licensed under the Apache License, Version 2.0 (the "License");
-//   you may not use this file except in compliance with the License.
-//   You may obtain a copy of the License at
-//
-//       http://www.apache.org/licenses/LICENSE-2.0
-//
-//   Unless required by applicable law or agreed to in writing, software
-//   distributed under the License is distributed on an "AS IS" BASIS,
-//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//   See the License for the specific language governing permissions and
-//   limitations under the License.
-
-package de.ugoe.cs.autoquest.plugin;
-
-import java.util.List;
-
-/**
- * <p>
- * Interface for QUEST plug-ins.
- * </p>
- * 
- * @author Steffen Herbold
- * @version 1.0
- */
-public interface QuestPlugin {
-
-	/**
-	 * <p>
-	 * Title of the plug-in.
-	 * </p>
-	 * 
-	 * @return the title
-	 */
-	public String getTitle();
-
-	/**
-	 * <p>
-	 * {@link List} of {@link String}s that contain the commands defined by this
-	 * plug-in. The List is immutable.
-	 * </p>
-	 * <p>
-	 * Consult the de.ugoe.cs.utils.console package of the java-utils project
-	 * for more information.
-	 * </p>
-	 * 
-	 * @return the command packages
-	 */
-	public List<String> getCommandPackages();
-}
Index: /trunk/autoquest-plugin-guitar/src/main/java/de/ugoe/cs/autoquest/plugin/guitar/GUITARPlugin.java
===================================================================
--- /trunk/autoquest-plugin-guitar/src/main/java/de/ugoe/cs/autoquest/plugin/guitar/GUITARPlugin.java	(revision 928)
+++ /trunk/autoquest-plugin-guitar/src/main/java/de/ugoe/cs/autoquest/plugin/guitar/GUITARPlugin.java	(revision 929)
@@ -19,9 +19,9 @@
 import java.util.List;
 
-import de.ugoe.cs.autoquest.plugin.QuestPlugin;
+import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
 
 /**
  * <p>
- * Identifier class for the QUEST GUITAR plug-in.
+ * Identifier class for the AutoQUEST GUITAR plug-in.
  * </p>
  * 
@@ -29,5 +29,5 @@
  * @version 1.0
  */
-public class GUITARPlugin implements QuestPlugin {
+public class GUITARPlugin implements AutoQUESTPlugin {
 
 	/**
@@ -41,5 +41,5 @@
 	 * (non-Javadoc)
 	 * 
-	 * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getTitle()
+	 * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getTitle()
 	 */
 	@Override
@@ -51,5 +51,5 @@
 	 * (non-Javadoc)
 	 * 
-	 * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getCommandPackages()
+	 * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getCommandPackages()
 	 */
 	@Override
Index: /trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCPlugin.java
===================================================================
--- /trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCPlugin.java	(revision 928)
+++ /trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCPlugin.java	(revision 929)
@@ -19,9 +19,9 @@
 import java.util.List;
 
-import de.ugoe.cs.autoquest.plugin.QuestPlugin;
+import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
 
 /**
  * <p>
- * Identifier class for the QUEST JFC plug-in.
+ * Identifier class for the AutoQUEST JFC plug-in.
  * </p>
  * 
@@ -29,5 +29,5 @@
  * @version 1.0
  */
-public class JFCPlugin implements QuestPlugin {
+public class JFCPlugin implements AutoQUESTPlugin {
 
     /**
@@ -42,5 +42,5 @@
      * (non-Javadoc)
      * 
-     * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getTitle()
+     * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getTitle()
      */
     @Override
@@ -52,5 +52,5 @@
      * (non-Javadoc)
      * 
-     * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getCommandPackages()
+     * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getCommandPackages()
      */
     @Override
Index: /trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/EventGenerator.java
===================================================================
--- /trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/EventGenerator.java	(revision 928)
+++ /trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/EventGenerator.java	(revision 929)
@@ -46,5 +46,5 @@
  * <p>
  * Translates sequences of windows messages into {@link Event}s that can be used by the
- * QUEST core libraries.
+ * AutoQUEST core libraries.
  * </p>
  * 
Index: /trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/MFCPlugin.java
===================================================================
--- /trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/MFCPlugin.java	(revision 928)
+++ /trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/MFCPlugin.java	(revision 929)
@@ -19,9 +19,9 @@
 import java.util.List;
 
-import de.ugoe.cs.autoquest.plugin.QuestPlugin;
+import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
 
 /**
  * <p>
- * Identifier class for the QUEST MFC plug-in.
+ * Identifier class for the AutoQUEST MFC plug-in.
  * </p>
  * 
@@ -29,5 +29,5 @@
  * @version 1.0
  */
-public class MFCPlugin implements QuestPlugin {
+public class MFCPlugin implements AutoQUESTPlugin {
 
 	/**
@@ -41,5 +41,5 @@
 	 * (non-Javadoc)
 	 * 
-	 * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getTitle()
+	 * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getTitle()
 	 */
 	@Override
@@ -51,5 +51,5 @@
 	 * (non-Javadoc)
 	 * 
-	 * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getCommandPackages()
+	 * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getCommandPackages()
 	 */
 	@Override
Index: /trunk/autoquest-plugin-php/src/main/java/de/ugoe/cs/autoquest/plugin/php/PHPPlugin.java
===================================================================
--- /trunk/autoquest-plugin-php/src/main/java/de/ugoe/cs/autoquest/plugin/php/PHPPlugin.java	(revision 928)
+++ /trunk/autoquest-plugin-php/src/main/java/de/ugoe/cs/autoquest/plugin/php/PHPPlugin.java	(revision 929)
@@ -19,9 +19,9 @@
 import java.util.List;
 
-import de.ugoe.cs.autoquest.plugin.QuestPlugin;
+import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
 
 /**
  * <p>
- * Identifier class for the QUEST PHP plug-in.
+ * Identifier class for the AutoQUEST PHP plug-in.
  * </p>
  * 
@@ -29,5 +29,5 @@
  * @version 1.0
  */
-public class PHPPlugin implements QuestPlugin {
+public class PHPPlugin implements AutoQUESTPlugin {
 
 	/**
@@ -41,5 +41,5 @@
 	 * (non-Javadoc)
 	 * 
-	 * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getTitle()
+	 * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getTitle()
 	 */
 	@Override
@@ -51,5 +51,5 @@
 	 * (non-Javadoc)
 	 * 
-	 * @see de.ugoe.cs.autoquest.plugin.QuestPlugin#getCommandPackages()
+	 * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getCommandPackages()
 	 */
 	@Override
Index: /trunk/autoquest-runner/src/main/java/de/ugoe/cs/autoquest/ui/Runner.java
===================================================================
--- /trunk/autoquest-runner/src/main/java/de/ugoe/cs/autoquest/ui/Runner.java	(revision 928)
+++ /trunk/autoquest-runner/src/main/java/de/ugoe/cs/autoquest/ui/Runner.java	(revision 929)
@@ -26,5 +26,5 @@
 import de.ugoe.cs.autoquest.log4j.Log4JLogger;
 import de.ugoe.cs.autoquest.plugin.PluginLoader;
-import de.ugoe.cs.autoquest.plugin.QuestPlugin;
+import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
 import de.ugoe.cs.autoquest.ui.swt.MainWindow;
 import de.ugoe.cs.util.console.CommandExecuter;
@@ -100,5 +100,5 @@
         pluginLoader.load();
 
-        for (QuestPlugin plugin : pluginLoader.getPlugins()) {
+        for (AutoQUESTPlugin plugin : pluginLoader.getPlugins()) {
             for (String commandPackage : plugin.getCommandPackages()) {
                 CommandExecuter.getInstance().addCommandPackage(commandPackage);
