source: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCPlugin.java @ 655

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
  • Property svn:mime-type set to text/plain
File size: 846 bytes
Line 
1package de.ugoe.cs.quest.plugin.jfc;
2
3import de.ugoe.cs.quest.plugin.QuestPlugin;
4
5/**
6 * <p>
7 * Identifier class for the QUEST JFC plug-in.
8 * </p>
9 *
10 * @author Steffen Herbold
11 * @version 1.0
12 */
13public class JFCPlugin implements QuestPlugin {
14
15    /**
16     * <p>
17     * The command packages of this plug-in.
18     * </p>
19     */
20    private final static String[] commandPackages = new String[]
21        { "de.ugoe.cs.quest.plugin.jfc.commands" };
22
23    /*
24     * (non-Javadoc)
25     *
26     * @see de.ugoe.cs.quest.plugin.QuestPlugin#getTitle()
27     */
28    @Override
29    public String getTitle() {
30        return "JFC-Plugin";
31    }
32
33    /*
34     * (non-Javadoc)
35     *
36     * @see de.ugoe.cs.quest.plugin.QuestPlugin#getCommandPackages()
37     */
38    @Override
39    public String[] getCommandPackages() {
40        return commandPackages;
41    }
42
43}
Note: See TracBrowser for help on using the repository browser.