package de.ugoe.cs.quest.plugin; /** *

* Interface for QUEST plug-ins. *

* * @author Steffen Herbold * @version 1.0 */ public interface QuestPlugin { /** *

* Title of the plug-in. *

* * @return */ public String getTitle(); /** *

* Collection of {@link String}s that contain the commands defined by this * plug-in. *

*

* Consult the de.ugoe.cs.utils.console package of the java-utils project * for more information. *

* * @return */ public String[] getCommandPackages(); }