I have a SWT text and it have large contents. Because of its contents when I maximize window textbox will grow vertically and hides remaining controls.

Text contentText=new Text(GroupName, SWT.BORDER | SWT.MULTI | SWT.V_SCROLL | SWT.WRAP );
contentText.setLayoutData( new GridData( SWT.FILL, SWT.FILL, true, true, 1, 1 ) );

How to solve this?

Thanks