/**
 * JavaLife - Conway's Life Simulation
 * @author Scott Hurring - scott at hurring dot com
 * @version alpha1
 * @license GPL
 * For most recent version, go to this url:
 * http://hurring.com/code/java/javalife/
 */

import java.awt.BorderLayout;

import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;

/**
 * Build the status bar for MainFrame
 * NOTE: Not used
 */
public class MainFrameStatusBar
{
	private JavaLife parent;
	
	public MainFrameStatusBar(JavaLife parent) {
		this.parent = parent;
	}
	
	public JPanel create() {
		JPanel jp = new JPanel();
		jp.setLayout(new BorderLayout());
		jp.setBorder(new EmptyBorder(0,10,10,5));
		jp.add(new JLabel("Java Life"), BorderLayout.WEST);
		jp.add(new JLabel("Scott Hurring"), BorderLayout.EAST);
		return jp;
	}
}

