super();
int i;
PerTypePanel panelPerType;
setLayout( new BorderLayout() );
tabs = new TabControl ();
add ( tabs, BorderLayout.CENTER );
for ( i = 1; i < PerTypePanel.pluginTypes.length; i++ ) {
panelPerType = new PerTypePanel ( i );
tabs.addPage ( panelPerType, PerTypePanel.pluginTypes[i] );
}