description.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
quarter.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
updatedBy.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
Font font = name.getFont();
FontDescriptor bold = FontDescriptor.createFrom(font);
bold = bold.setStyle(SWT.BOLD);
FontDescriptor big = bold.setHeight(18);
Font boldFont = bold.createFont(font.getDevice());
name.setFont(big.createFont(font.getDevice()));
id.setFont(boldFont);
description.setFont(boldFont);
quarter.setFont(boldFont);
updatedBy.setFont(boldFont);