Line | Hits | Source |
---|---|---|
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 | ||
38 | 0 | private JPanel buttonPanel; |
39 | 0 | |
40 | 0 | public ICInventoryPanel() { |
41 | 0 | initialize(); |
42 | 0 | } |
43 | 0 | |
44 | 0 | protected void initialize() { |
45 | 0 | this.setLayout(new BorderLayout()); |
46 | 0 | this.add(getTabbedPanel(), BorderLayout.CENTER); |
47 | 0 | this.add(getButtonPanel(), BorderLayout.SOUTH); |
48 | 0 | } |
49 | ||
50 | /** | |
51 | * @return Returns the buttonPanel. | |
52 | 0 | */ |
53 | 0 | protected JPanel getButtonPanel() { |
54 | 0 | if (buttonPanel == null) { |
55 | 0 | buttonPanel = new JPanel(); |
56 | 0 | buttonPanel.setBorder(new EtchedBorder()); |
57 | 0 | buttonPanel.setLayout(new GridLayout(1, 5)); |
58 | 0 | buttonPanel.add(new JLabel("")); //$NON-NLS-1$ |
59 | 0 | buttonPanel.add(new JButton("Button1")); //$NON-NLS-1$ |
60 | 0 | buttonPanel.add(new JButton("Button2")); //$NON-NLS-1$ |
61 | 0 | buttonPanel.add(new JButton("Button3")); //$NON-NLS-1$ |
62 | 0 | buttonPanel.add(new JLabel("")); //$NON-NLS-1$ |
63 | 0 | |
64 | } | |
65 | 0 | return buttonPanel; |
66 | } | |
67 | ||
68 | /** | |
69 | * @return Returns the tabbedPanel. | |
70 | 0 | */ |
71 | 0 | protected JTabbedPane getTabbedPanel() { |
72 | 0 | if (tabbedPanel == null) { |
73 | 0 | tabbedPanel = new JTabbedPane(); |
74 | 0 | tabbedPanel.add(Messages.getString("common.food"), new JPanel()); //$NON-NLS-1$ |
75 | 0 | tabbedPanel.add(Messages.getString("common.beverages"), new JPanel()); //$NON-NLS-1$ |
76 | 0 | tabbedPanel.add(Messages.getString("common.pricelists"), new JPanel()); //$NON-NLS-1$ |
77 | 0 | tabbedPanel.add(Messages.getString("common.suppliers"), new JPanel()); //$NON-NLS-1$ |
78 | } | |
79 | 0 | return tabbedPanel; |
80 | } | |
81 | ||
82 | } |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |