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