myAttributesTableViewer = new EOAttributesTableViewer(sashForm, SWT.NONE);
myAttributesTableViewer.setLayoutData(new GridData(GridData.FILL_BOTH));
myAttributesTableViewer.addSelectionChangedListener(new AttributeSelectionChangedListener());
myRelationshipsTableViewer = new EORelationshipsTableViewer(sashForm, SWT.NONE);
myRelationshipsTableViewer.setLayoutData(new GridData(GridData.FILL_BOTH));
myRelationshipsTableViewer.addSelectionChangedListener(new RelationshipSelectionChangedListener());
sashForm.setWeights(new int[] { 2, 1 });
updateTableViewers();