Coverage details for ui.dialog.UserDialog

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.dialog;
21  
22 import java.awt.BorderLayout;
23 import java.awt.Dimension;
24 import java.awt.GridLayout;
25 import java.awt.Toolkit;
26 import java.awt.event.ActionEvent;
27 import java.awt.event.ActionListener;
28  
29 import javax.swing.ImageIcon;
30 import javax.swing.JButton;
31 import javax.swing.JDialog;
32 import javax.swing.JLabel;
33 import javax.swing.JPanel;
34 import javax.swing.border.TitledBorder;
35  
36 import org.apache.log4j.Logger;
37  
38 import ui.Messages;
39 import ui.command.CommandExecutor;
40 import ui.command.IO.SaveUserCommand;
41 import ui.panel.UserPanel;
42 import base.user.User;
43  
440@SuppressWarnings("serial") //$NON-NLS-1$
450public class UserDialog extends JDialog {
460 
470    private static final transient Logger logger = Logger
480            .getLogger(UserDialog.class.getName());
49  
50     private JPanel contentPanel;
51  
52     private UserPanel userPanel;
53  
54     private JPanel buttonPanel;
55  
56     private JButton saveUserButton;
57  
58     private JButton clearUserDataButton;
590 
600    private User user;
610 
620    private boolean createUser = false;
630 
640    public UserDialog(User user) {
650        this.user = user;
660        if (user == null)
670            createUser = true;
680        initialize();
690    }
700 
710    public UserDialog() {
720        createUser = true;
730        initialize();
740    }
75  
760    protected void initialize() {
770        this.setSize(800, 600);
780        this.setResizable(false);
790        // Center the dialog
800        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
810        Dimension frameSize = this.getSize();
820        if (frameSize.height > screenSize.height) {
830            frameSize.height = screenSize.height;
840        }
850        if (frameSize.width > screenSize.width) {
860            frameSize.width = screenSize.width;
870        }
880        this.setLocation((screenSize.width - frameSize.width) / 2,
890                (screenSize.height - frameSize.height) / 2);
900 
910        this.setContentPane(getContentPanel());
920        this.setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE);
930    }
94  
95     /**
96      * @return Returns the contentPanel.
97      */
980    protected JPanel getContentPanel() {
990        if (contentPanel == null) {
1000            contentPanel = new JPanel();
1010            contentPanel.setLayout(new BorderLayout());
1020            contentPanel.add(getUserPanel(), BorderLayout.CENTER);
1030            contentPanel.add(getButtonPanel(), BorderLayout.SOUTH);
1040        }
1050        return contentPanel;
106     }
107  
108     /**
109      * @return Returns the userPanel.
110      */
1110    protected UserPanel getUserPanel() {
1120        if (userPanel == null) {
1130            userPanel = new UserPanel(getUser());
1140        }
1150        return userPanel;
116     }
117  
118     /**
119      * @return Returns the user.
120      */
1210    public User getUser() {
1220        return user;
123     }
124  
125     /**
126      * @return Returns the buttonPanel.
127      */
1280    protected JPanel getButtonPanel() {
1290        if (buttonPanel == null) {
1300            buttonPanel = new JPanel();
1310            TitledBorder titledBorder = new TitledBorder(Messages.getString("dialog.availableactions")); //$NON-NLS-1$
1320            buttonPanel.setBorder(titledBorder);
1330            buttonPanel.setLayout(new GridLayout(1, 4));
1340            buttonPanel.add(new JLabel("")); //$NON-NLS-1$
1350            buttonPanel.add(getSaveUserButton());
1360            buttonPanel.add(getClearUserDataButton());
1370            buttonPanel.add(new JLabel("")); //$NON-NLS-1$
1380        }
1390        return buttonPanel;
140     }
141  
142     /**
143      * @return Returns the clearUserDataButton.
144      */
1450    protected JButton getClearUserDataButton() {
1460        if (clearUserDataButton == null) {
1470            clearUserDataButton = new JButton(Messages.getString("button.clear")); //$NON-NLS-1$
1480            clearUserDataButton.setIcon(new ImageIcon(this.getClass()
1490                    .getResource("/icon/16x16/actions/view-refresh.png"))); //$NON-NLS-1$
1500 
1510            clearUserDataButton.addActionListener(new ActionListener() {
152                 public void actionPerformed(ActionEvent arg0) {
153                     logger.debug("actionPerformed clearUserDataButton"); //$NON-NLS-1$
154                     getUserPanel().clearUserData();
155                 }
156             });
1570        }
1580        return clearUserDataButton;
159     }
160  
161     /**
162      * @return Returns the saveUserButton.
163      */
1640    protected JButton getSaveUserButton() {
1650        if (saveUserButton == null) {
1660            saveUserButton = new JButton(Messages.getString("button.save")); //$NON-NLS-1$
1670            saveUserButton.setIcon(new ImageIcon(this.getClass().getResource(
1680                    "/icon/16x16/actions/document-save.png"))); //$NON-NLS-1$
1690 
1700            saveUserButton.addActionListener(new ActionListener() {
171                 public void actionPerformed(ActionEvent arg0) {
172                     logger.debug("actionPerformed saveUserButton"); //$NON-NLS-1$
173                     SaveUserCommand saveUserCommand = new SaveUserCommand(
174                             getUserPanel(), user, createUser);
175                     CommandExecutor.getInstance().executeCommand(
176                             saveUserCommand, true);
177                     if (saveUserCommand.getStatus() == SaveUserCommand.SUCCESS_STATUS)
178                         setVisible(false);
179                 }
180             });
1810        }
1820        return saveUserButton;
183     }
184 }

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.