private void createCoordinateTableComposite(Composite parent) {
ScrolledComposite scrollComposite = new ScrolledComposite(parent, SWT.NONE | SWT.H_SCROLL | SWT.V_SCROLL);
scrollComposite.setLayout(new FillLayout());
this.coordinateTableComposite = new CoordinateTableComposite(this.cmd, scrollComposite, SWT.NONE | SWT.NO_FOCUS);
this.coordinateTableComposite.setLayout(new FillLayout());
this.cmd.addObserver(coordinateTableComposite);
// adds the parameters container to scroll composite
scrollComposite.setContent(coordinateTableComposite);