package de.ugoe.cs.quest.plugin.mfc; import java.util.Arrays; import java.util.Collections; import java.util.List; import de.ugoe.cs.quest.plugin.QuestPlugin; /** *

* Identifier class for the QUEST MFC plug-in. *

* * @author Steffen Herbold * @version 1.0 */ public class MFCPlugin implements QuestPlugin { /** *

* The command packages of this plug-in. *

*/ private final static String[] commandPackages = new String[] { "de.ugoe.cs.quest.plugin.mfc.commands" }; /* * (non-Javadoc) * * @see de.ugoe.cs.quest.plugin.QuestPlugin#getTitle() */ @Override public String getTitle() { return "MFC-Plugin"; } /* * (non-Javadoc) * * @see de.ugoe.cs.quest.plugin.QuestPlugin#getCommandPackages() */ @Override public List getCommandPackages() { return Collections.unmodifiableList(Arrays.asList(commandPackages)); } }