001/* ========================================================================
002 * JCommon : a free general purpose class library for the Java(tm) platform
003 * ========================================================================
004 *
005 * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
006 * 
007 * Project Info:  http://www.jfree.org/jcommon/index.html
008 *
009 * This library is free software; you can redistribute it and/or modify it 
010 * under the terms of the GNU Lesser General Public License as published by 
011 * the Free Software Foundation; either version 2.1 of the License, or 
012 * (at your option) any later version.
013 *
014 * This library is distributed in the hope that it will be useful, but 
015 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
016 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
017 * License for more details.
018 *
019 * You should have received a copy of the GNU Lesser General Public
020 * License along with this library; if not, write to the Free Software
021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
022 * USA.  
023 *
024 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
025 * in the United States and other countries.]
026 * 
027 * --------------------
028 * L1R1ButtonPanel.java
029 * --------------------
030 * (C) Copyright 2000-2004, by Object Refinery Limited.
031 *
032 * Original Author:  David Gilbert (for Object Refinery Limited);
033 * Contributor(s):   -;
034 *
035 * $Id: L1R1ButtonPanel.java,v 1.3 2005/10/18 13:18:34 mungady Exp $
036 *
037 * Changes (from 26-Oct-2001)
038 * --------------------------
039 * 26-Oct-2001 : Changed package to com.jrefinery.ui.* (DG);
040 * 26-Jun-2002 : Removed unnecessary import (DG);
041 * 14-Oct-2002 : Fixed errors reported by Checkstyle (DG);
042 *
043 */
044
045package org.jfree.ui;
046
047import java.awt.BorderLayout;
048
049import javax.swing.JButton;
050import javax.swing.JPanel;
051
052/**
053 * A 'ready-made' panel that has one button on the left and another button on the right - a layout
054 * manager takes care of resizing.
055 *
056 * @author David Gilbert
057 */
058public class L1R1ButtonPanel extends JPanel {
059
060    /** The button on the left. */
061    private JButton left;
062
063    /** The button on the right. */
064    private JButton right;
065
066    /**
067     * Standard constructor - creates a two-button panel with the specified labels.
068     *
069     * @param leftLabel  the label for the left button.
070     * @param rightLabel  the label for the right button.
071     */
072    public L1R1ButtonPanel(final String leftLabel, final String rightLabel) {
073
074        setLayout(new BorderLayout());
075        this.left = new JButton(leftLabel);
076        this.right = new JButton(rightLabel);
077        add(this.left, BorderLayout.WEST);
078        add(this.right, BorderLayout.EAST);
079
080    }
081
082    /**
083     * Returns a reference to button 1, allowing the caller to set labels, action-listeners etc.
084     *
085     * @return the button.
086     */
087    public JButton getLeftButton() {
088        return this.left;
089    }
090
091    /**
092     * Returns a reference to button 2, allowing the caller to set labels, action-listeners etc.
093     *
094     * @return the button.
095     */
096    public JButton getRightButton() {
097        return this.right;
098    }
099
100}