comment.setText(text);
comment.setForeground(Color.COMMENT.getSWTColor());
comment.setLayoutData(new GridData(GridData.FILL_BOTH));
// Workaround fuer Windows, weil dort mehrzeilige
// Labels nicht korrekt umgebrochen werden.
comment.addControlListener(new ControlAdapter() {
public void controlResized(ControlEvent e)
{
comment.setSize(comment.computeSize(comment.getSize().x,SWT.DEFAULT));
}
});