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

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