FormData data = new FormData();
data.top = new FormAttachment(separator, 10);
data.left = new FormAttachment(studentComposite, 5);
specificDateLabel.setLayoutData(data);
startPeriodText = new DateText(studentComposite, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
startPeriodText.setValue(new GDDate().getDate());
startPeriodText.setEnabled(true);
data = new FormData();
data.top = new FormAttachment(specificDateLabel, 10);
data.left = new FormAttachment(studentComposite, 5);
data.width = 80;
startPeriodText.setLayoutData(data);
final Label atLabel = new Label(studentComposite, SWT.NULL);
atLabel.setText("�");
atLabel.setEnabled(true);
data = new FormData();
data.top = new FormAttachment(specificDateLabel, 10);
data.left = new FormAttachment(startPeriodText, 10);
atLabel.setLayoutData(data);
endPeriodText = new DateText(studentComposite, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
endPeriodText.setValue(new GDDate().getDate());
endPeriodText.setEnabled(true);
data = new FormData();
data.top = new FormAttachment(specificDateLabel, 10);