source: trunk/quest-plugin-php/src/main/java/de/ugoe/cs/quest/plugin/php/PHPPlugin.java @ 516

Last change on this file since 516 was 516, checked in by sherbold, 12 years ago
  • initial commit of quest-plugin-guitar, quest-plugin-jfc, quest-plugin-mfc, and quest-plugin-php. All plug-ins only provide their identifier class, the functionality is still located in quest-ui-core.
  • Property svn:mime-type set to text/plain
File size: 763 bytes
Line 
1package de.ugoe.cs.quest.plugin.php;
2
3import de.ugoe.cs.quest.plugin.QuestPlugin;
4
5/**
6 * <p>
7 * Identifier class for the QUEST PHP plug-in.
8 * </p>
9 *
10 * @author Steffen Herbold
11 * @version 1.0
12 */
13public class PHPPlugin 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[] { "de.ugoe.cs.quest.plugin.php.commands" };
21
22        /*
23         * (non-Javadoc)
24         *
25         * @see de.ugoe.cs.quest.plugin.QuestPlugin#getTitle()
26         */
27        @Override
28        public String getTitle() {
29                return "GUITAR-Plugin";
30        }
31
32        /*
33         * (non-Javadoc)
34         *
35         * @see de.ugoe.cs.quest.plugin.QuestPlugin#getCommandPackages()
36         */
37        @Override
38        public String[] getCommandPackages() {
39                return commandPackages;
40        }
41
42}
Note: See TracBrowser for help on using the repository browser.