*
* @return The new InstrumentManagerConnection
*/
private InstrumentManagerConnection createConnection( URL url )
{
InstrumentManagerConnection conn = new HTTPInstrumentManagerConnection( url );
ContainerUtil.enableLogging(
conn, getLogger().getChildLogger( url.getHost() + ":" + url.getPort() ) );
conn.setFrame( this );
conn.init();
m_connections.put( conn.getKey(), conn );
m_connectionArray = null;
conn.addInstrumentManagerConnectionListener( this );
m_connectionsPane.add( conn.getTabTitle(), conn );
return conn;
}