Changeset 2035


Ignore:
Timestamp:
09/10/15 23:25:11 (9 years ago)
Author:
dmay
Message:

refactorings

Location:
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc
Files:
2 added
1 edited

Legend:

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

    r1956 r2035  
    2222import java.util.Iterator; 
    2323import java.util.List; 
     24import java.util.logging.Level; 
    2425 
    2526import de.ugoe.cs.autoquest.CommandHelpers; 
     
    3334import de.ugoe.cs.autoquest.plugin.jfc.guimodel.JFCMenuButton; 
    3435import de.ugoe.cs.util.console.Command; 
     36import de.ugoe.cs.util.console.Console; 
    3537import de.ugoe.cs.util.console.GlobalDataContainer; 
    3638 
    3739/** 
    3840 * <p> 
    39  * TODO comment 
     41 * Command to add an alternative index to JFCGuiElementSpecs. This index counts child type 
     42 * separately. 
    4043 * </p> 
    4144 *  
     
    5962            sequencesName = (String) parameters.get(0); 
    6063            if (parameters.size() >= 2) { 
    61                 menuList = 
    62                     Files.readAllLines(Paths.get((String) parameters.get(1)), 
    63                                        Charset.defaultCharset()); 
     64                menuList = Files.readAllLines(Paths.get((String) parameters.get(1)), 
     65                                              Charset.defaultCharset()); 
    6466            } 
    6567        } 
     
    128130    @Override 
    129131    public String help() { 
    130         // TODO Auto-generated method stub 
    131132        System.out.println("parseJFCDirwithJacaretoIndices <path> {<sequencesName>} {<menuFile>}"); 
    132133        return null; 
    133134    } 
    134135 
    135     // duplicates to parseJFCwithJacaretoIndices 
    136136    private int findPopupMenuIndex(IGUIElement item, GUIModel model) { 
    137         // TODO: refactor 
    138137        int index = -1; 
    139138        List<IGUIElement> children = model.getChildren(item); 
     
    151150        if (menuChild == null) { 
    152151            // this popup menu cannot be identified 
    153             // TODO: exception, logging etc 
     152            Console.traceln(Level.WARNING, "Index for popup menu item could not be found."); 
    154153            return -1; 
    155154        } 
     
    169168        if (lineOfItem == -1) { 
    170169            // failed to find this item in the menu file 
    171             // TODO: exception, logging etc 
     170            Console.traceln(Level.WARNING, "Menu file seems to be missing an item."); 
    172171            return -1; 
    173172        } 
Note: See TracChangeset for help on using the changeset viewer.