Newer
Older
CardRegister / src / hayashi / yuu / register / FooterPanel.java
@yuuhayashi yuuhayashi on 26 Jan 2014 897 bytes version 2010-03-19
package hayashi.yuu.register;

import javax.swing.*;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.GridBagLayout;

public class FooterPanel extends JPanel
{
    GridBagLayout gbLayout = new GridBagLayout();
	
	/**
	 * コンストラクタ
	 * @param keytagID
	 * @throws Exception
	 */
	public FooterPanel(String siteName) throws Exception {
		super();
		this.setBackground(Color.DARK_GRAY);

        //-------------------------------------------
        // Inner Reader panel
        //----
        this.setLayout(new FlowLayout(FlowLayout.CENTER));
        this.setSize(800, 100);
        
        //-------------------------------------------
        // ユーザーサイト名称
        //----
        JLabel siteNameLabel = new JLabel("ユーザーサイト : '"+ siteName +"'   ");
        siteNameLabel.setForeground(Color.LIGHT_GRAY);
    	add(siteNameLabel);
	}
}