Ignore:
Timestamp:
08/17/12 08:33:29 (12 years ago)
Author:
pharms
Message:
  • adapted task tree creation stuff to more general event handling
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-tasktrees-test/src/test/java/de/ugoe/cs/quest/tasktrees/testutils/DummyTextField.java

    r452 r557  
    1 //------------------------------------------------------------------------------------------------- 
    21// Module    : $RCSfile: DummyGUIElement.java,v $ 
    32// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 02.04.2012 $ 
     
    54// Creation  : 2012 by patrick 
    65// Copyright : Patrick Harms, 2012 
    7 //------------------------------------------------------------------------------------------------- 
     6 
     7 
    88package de.ugoe.cs.quest.tasktrees.testutils; 
    99 
    10 import de.ugoe.cs.quest.eventcore.guimodel.TextField; 
     10import de.ugoe.cs.quest.eventcore.guimodel.ITextField; 
    1111 
    12 //------------------------------------------------------------------------------------------------- 
    1312/** 
    1413 * TODO comment 
     
    1716 * @author 2012, last modified by $Author: patrick$ 
    1817 */ 
    19 //------------------------------------------------------------------------------------------------- 
    20 public class DummyTextField extends DummyGUIElement 
    21   implements TextField 
    22 { 
     18public class DummyTextField extends DummyGUIElement implements ITextField { 
    2319 
    24   //--------------------------------------------------------------------------------------------- 
    25   /** 
    26    * 
    27    */ 
    28   //--------------------------------------------------------------------------------------------- 
    29   public DummyTextField(String name) 
    30   { 
    31     super("text field \"" + name + "\""); 
    32   } 
     20    /**  */ 
     21    private static final long serialVersionUID = 1L; 
     22 
     23    /** 
     24     * 
     25     */ 
     26    public DummyTextField(String name) { 
     27        super("text field \"" + name + "\""); 
     28    } 
    3329 
    3430} 
Note: See TracChangeset for help on using the changeset viewer.