int[] indices = testStepList.getSelectedIndices();
if (indices.length == 1) {
WsdlTestStep testStep = testCase.getTestStepAt(ix);
ActionSupport.addActions(ActionListBuilder.buildActions(testStep), testListPopup);
testListPopup.insert(SwingActionDelegate.createDelegate(new RunFromTestStepAction(), testStep), 0);
testListPopup.insert(new JSeparator(), 1);
} else {
ModelItem[] modelItems = new ModelItem[indices.length];
for (int c = 0; c < indices.length; c++) {
modelItems[c] = testCase.getTestStepAt(indices[c]).getModelItem();