composite = new Composite(sShell, SWT.NONE);
composite.setLayoutData(gridData);
composite.setLayout(gridLayout1);
tree = new Tree(composite, SWT.SINGLE | SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL | SWT.CHECK);
tree.setLayoutData(gridData1);
tree.addTreeListener(new TreeListener() {
public void treeExpanded(TreeEvent e) {
TreeItem ti = (TreeItem) e.item;
ti.setImage(MaudeWorkstationGUIPlugin.getImage(Messages.getString("MaudeWorkstationGUIPlugin.DIALOGO_ELECCION_PATH_FOLDER_OPEN"))); //$NON-NLS-1$
}