public void selectionChanged(SelectionChangedEvent event) {
ISelection selection = constructorCombo.getSelection();
if (selection instanceof StructuredSelection) {
StructuredSelection structuredSelection = (StructuredSelection) selection;
Object[] items = structuredSelection.toArray();
if (items.length == 1) {
IMethod constructor = (IMethod) items[0];
int numParam = constructor.getNumberOfParameters();
int itemCount = constructorArgsTable.getItemCount();
if (itemCount != numParam) {