comboItems[i] = legalTypes.get(i).getName();
}
TextCellEditor attributeNameEditor = new TextCellEditor(tree);
ComboBoxCellEditor attributeTypeEditor = new ComboBoxCellEditor(tree, comboItems, SWT.READ_ONLY|SWT.FULL_SELECTION);
DialogCellEditor crsEditor = createCRSEditor(tree);
viewer.setCellEditors(new CellEditor[]{attributeNameEditor,
attributeTypeEditor,
crsEditor
});
viewer.setCellModifier(new AttributeCellModifier());