* @throws InvocationTargetException
* @throws InterruptedException
*/
private void addTransactionController(final JMeterTreeModel model, final JMeterTreeNode node, String name)
throws IllegalUserActionException, InterruptedException, InvocationTargetException {
final TransactionController sc = new TransactionController();
sc.setProperty(TestElement.GUI_CLASS, TRANSACTION_CONTROLLER_GUI);
sc.setName(name);
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
try {
model.addComponent(sc, node);
} catch (IllegalUserActionException e) {