Ignore:
Timestamp:
08/22/14 15:15:32 (10 years ago)
Author:
dmay
Message:

start implementing key event, not working yet
also another id hack for testing purposes - this needs to be improved asap

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/guimodel/JFCGUIElement.java

    r1683 r1691  
    162162        // jacareto indices start at 1 
    163163        int jacIndex = getIndex() + 1; 
    164         // some class specific hacks 
     164 
     165        // FIXME: some class specific hacks 
    165166        if (name.equals("JFrame")) { 
    166167            jacIndex++; 
     
    168169        else if (name.equals("JLayeredPane")) { 
    169170            jacIndex--; 
     171        } 
     172        else if (name.equals("JTextField")) { 
     173            jacIndex = 1; 
    170174        } 
    171175 
Note: See TracChangeset for help on using the changeset viewer.