}
private Composite getComp2(Composite parent) {
if(null == comp2) {
comp2 = new Composite(parent, SWT.NONE);
comp2.setLayout(new FormLayout());
FormData fd;
final Label cap = new Label(comp2, SWT.LEFT);
cap.setText("\n Tab Item 2");
cap.setFont(getTitleFont());
cap.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_DARK_GRAY));
cap.setForeground(Display.getCurrent().getSystemColor(SWT.COLOR_MAGENTA));
fd = new FormData();
fd.top = new FormAttachment(0, 0);
fd.height = 40;
fd.left = new FormAttachment(0, 0);
fd.right = new FormAttachment(100, 0);
cap.setLayoutData(fd);
final Label l1 = new Label(comp2, SWT.RIGHT);
l1.setText("First Name :");
fd = new FormData();
fd.top = new FormAttachment(cap, 10);
fd.height = 40;
fd.right = new FormAttachment(0, 70);
l1.setLayoutData(fd);
final Label l2 = new Label(comp2, SWT.RIGHT);
l2.setText("Last Name :");
fd = new FormData();
fd.top = new FormAttachment(l1, 5);
fd.height = 40;
fd.right = new FormAttachment(0, 70);
l2.setLayoutData(fd);
final Text t1 = new Text(comp2, SWT.BORDER | SWT.SINGLE);
fd = new FormData();
fd.top = new FormAttachment(l1, 0, SWT.TOP);
fd.left = new FormAttachment(l1, 10);
fd.right = new FormAttachment(100, -10);
t1.setLayoutData(fd);
t1.setText("Omar");
final Text t2 = new Text(comp2, SWT.BORDER | SWT.SINGLE);
fd = new FormData();
fd.top = new FormAttachment(l2, 0, SWT.TOP);
fd.left = new FormAttachment(l2, 10);
fd.right = new FormAttachment(100, -10);
t2.setLayoutData(fd);
t2.setText("Ali");
Group grp = new Group(comp2, SWT.NONE);
grp.setLayout(new FormLayout());
grp.setText("Group :");
fd = new FormData();
fd.top = new FormAttachment(l2, 5);
fd.bottom = new FormAttachment(100, -10);
fd.left = new FormAttachment(l2, 0, SWT.LEFT);