Changeset 573 for trunk/quest-plugin-jfc
- Timestamp:
- 08/17/12 16:10:22 (12 years ago)
- Location:
- trunk/quest-plugin-jfc
- Files:
-
- 28 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-jfc/.classpath
r516 r573 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <classpath> 3 <classpathentry kind="src" output="target/classes" path="src/main/java">3 <classpathentry excluding="de/ugoe/cs/quest/plugin/jfc/eventcore/JFCTargetComparator.java" kind="src" output="target/classes" path="src/main/java"> 4 4 <attributes> 5 5 <attribute name="optional" value="true"/> -
trunk/quest-plugin-jfc/pom.xml
r516 r573 20 20 <version>0.0.1-SNAPSHOT</version> 21 21 </dependency> 22 <dependency> 23 <groupId>de.ugoe.cs.quest</groupId> 24 <artifactId>quest-ui-core</artifactId> 25 <version>0.0.1-SNAPSHOT</version> 26 </dependency> 22 27 </dependencies> 23 28 <build> -
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.