Changeset 573


Ignore:
Timestamp:
08/17/12 16:10:22 (12 years ago)
Author:
pharms
Message:
  • 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.
Location:
trunk/quest-plugin-jfc
Files:
28 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc/.classpath

    r516 r573  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<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"> 
    44                <attributes> 
    55                        <attribute name="optional" value="true"/> 
  • trunk/quest-plugin-jfc/pom.xml

    r516 r573  
    2020                        <version>0.0.1-SNAPSHOT</version> 
    2121                </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> 
    2227        </dependencies> 
    2328        <build> 
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCPlugin.java

    r516 r573  
     1 
    12package de.ugoe.cs.quest.plugin.jfc; 
    23 
     
    1314public class JFCPlugin implements QuestPlugin { 
    1415 
    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" }; 
    2123 
    22         /* 
    23         * (non-Javadoc) 
    24         *  
    25         * @see de.ugoe.cs.quest.plugin.QuestPlugin#getTitle() 
    26         */ 
    27         @Override 
    28         public String getTitle() { 
    29                 return "JFC-Plugin"; 
    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    } 
    3133 
    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         } 
     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    } 
    4143 
    4244} 
Note: See TracChangeset for help on using the changeset viewer.