/**
 * Scott's XML Editor - Swing and JDOM XML Editor
 * @author Scott Hurring - scott at hurring dot com
 * @version beta1
 * @license GPL
 * For most recent version, go to this url:
 * http://hurring.com/code/java/xmleditor/
 */

import java.awt.BorderLayout;

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

/**
 * Build the status bar for MainFrame
 */
public class MainFrameStatusBar
{
	private ScottEditor parent;
	
	public MainFrameStatusBar(ScottEditor parent) {
		this.parent = parent;
	}
	
	public JPanel create() {
		JPanel jp = new JPanel();
		jp.setLayout(new BorderLayout());
		jp.setBorder(new EmptyBorder(5,10,5,10));
		jp.add(new JLabel("XML Editor"), BorderLayout.WEST);
		jp.add(new JLabel("Scott Hurring"), BorderLayout.EAST);
		return jp;
	}
}

