FileDocCategorySizeDatePackage
PIMPanel.javaAPI DocJMF 2.1.1e1027Mon May 12 12:20:30 BST 2003jmapps.registry

PIMPanel

public class PIMPanel extends JMPanel

Fields Summary
TabControl
tabs
Constructors Summary
public PIMPanel()

        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] );
        }
    
Methods Summary