List<String> shortcutTypes = new ArrayList<String>();
Iterator<ShortcutType> it = WGADesignConfigurationModel.SHORTCUTTYPES.values().iterator();
_shortcutTypesByIndex = new HashMap<Integer, ShortcutType>();
int i = 0;
while (it.hasNext()) {
ShortcutType type = it.next();
shortcutTypes.add(type.getValue());
_shortcutTypesByIndex.put(i, type);
i++;
}
CellEditor[] editors = new CellEditor[5];