Coverage details for ui.panel.ICInventoryPanel

LineHitsSource
1 /*******************************************************************************
2  * InternetCafe is a software solution that helps the management of Cybercafes
3  * according with the ITALIAN DECREE LAW ON ANTI-TERROR MEASURES, 27 JULY 2005.
4  * Copyright (C) 2006 Guido Angelo Ingenito
5  
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19  *******************************************************************************/
20 package ui.panel;
21  
22 import java.awt.BorderLayout;
23 import java.awt.GridLayout;
24  
25 import javax.swing.JButton;
26 import javax.swing.JLabel;
27 import javax.swing.JPanel;
28 import javax.swing.JTabbedPane;
29 import javax.swing.border.EtchedBorder;
30  
31 import ui.Messages;
32  
33 @SuppressWarnings("serial") //$NON-NLS-1$
34 public class ICInventoryPanel extends JPanel {
35  
36     private JTabbedPane tabbedPanel;
37  
380    private JPanel buttonPanel;
390 
400    public ICInventoryPanel() {
410        initialize();
420    }
430 
440    protected void initialize() {
450        this.setLayout(new BorderLayout());
460        this.add(getTabbedPanel(), BorderLayout.CENTER);
470        this.add(getButtonPanel(), BorderLayout.SOUTH);
480    }
49  
50     /**
51      * @return Returns the buttonPanel.
520     */
530    protected JPanel getButtonPanel() {
540        if (buttonPanel == null) {
550            buttonPanel = new JPanel();
560            buttonPanel.setBorder(new EtchedBorder());
570            buttonPanel.setLayout(new GridLayout(1, 5));
580            buttonPanel.add(new JLabel("")); //$NON-NLS-1$
590            buttonPanel.add(new JButton("Button1")); //$NON-NLS-1$
600            buttonPanel.add(new JButton("Button2")); //$NON-NLS-1$
610            buttonPanel.add(new JButton("Button3")); //$NON-NLS-1$
620            buttonPanel.add(new JLabel("")); //$NON-NLS-1$
630 
64         }
650        return buttonPanel;
66     }
67  
68     /**
69      * @return Returns the tabbedPanel.
700     */
710    protected JTabbedPane getTabbedPanel() {
720        if (tabbedPanel == null) {
730            tabbedPanel = new JTabbedPane();
740            tabbedPanel.add(Messages.getString("common.food"), new JPanel()); //$NON-NLS-1$
750            tabbedPanel.add(Messages.getString("common.beverages"), new JPanel()); //$NON-NLS-1$
760            tabbedPanel.add(Messages.getString("common.pricelists"), new JPanel()); //$NON-NLS-1$
770            tabbedPanel.add(Messages.getString("common.suppliers"), new JPanel()); //$NON-NLS-1$
78         }
790        return tabbedPanel;
80     }
81  
82 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.