/*
// header - edit "Data/yourJavaHeader" to customize
// contents - edit "EventHandlers/Java file/onCreate" to customize
//
*/
import java.awt.*;
import java.applet.*;

public class CookButtonsPanel extends Panel
{
Button     bMicro, bDefrost, bTimer, bClock;

public CookButtonsPanel()

{
			setLayout (new GridLayout (4,1));
			
			bMicro = new Button ("APPEND");
			bDefrost = new Button ("CRYSTALS");
			bTimer = new Button ("EDIT ATOMS");
			bClock = new Button ("REMOVE FOREVER");
			
			add(bMicro);
			add(bDefrost);
			add(bTimer);
			add(bClock);
	}


}
