Changeset 573 for trunk/quest-plugin-jfc/src
- Timestamp:
- 08/17/12 16:10:22 (12 years ago)
- Location:
- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc
- Files:
-
- 28 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCPlugin.java
r516 r573 1 1 2 package de.ugoe.cs.quest.plugin.jfc; 2 3 … … 13 14 public class JFCPlugin implements QuestPlugin { 14 15 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.jfc.commands" }; 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" }; 21 23 22 23 24 25 26 27 28 29 30 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 } 31 33 32 33 34 35 36 37 38 39 40 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 } 41 43 42 44 }
Note: See TracChangeset
for help on using the changeset viewer.