@Override
public void automationAdded(Automation automation, int index)
{
// add slave panel into the gui and refresh gui
AutomationPanel panel = new AutomationPanel(automation, this );
//panel.requestFocus();
automationsListPanel.add( panel, new Integer(index) );
automationListScrollPane.validate();
panel.focus();
}