Tester for the gui.TabPanel. Click on the tabs to select the card for that tab. Click on the various buttons after Select: to select the first, next, previous or last tab card. You can add or remove tabs by typing the name into the Edit field and clicking the remove or insert button. Use of TabPanel is quite simple. To create a panel containing three cards you might do something like the following:
   TabPanel tab = new TabPanel();
   tab.add("Alpha", new AlphaPanel());
   tab.add("Beta",  new BetaPanel());
   tab.add("Gamma", new GammaPanel());
	...
   tab.show("Beta");

Created by Bruce Miller @ NIST (bruce.miller@nist.gov) Disclaimer.