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

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