Add javadoc comments.
[jkeytool.git] / src / net / pterodactylus / jkeytool / gui / swing / KeyStorePanel.java
1 /*
2  * jkeytool - KeyStorePanel.java -
3  * Copyright © 2009 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jkeytool.gui.swing;
21
22 import java.awt.BorderLayout;
23 import java.awt.event.ActionEvent;
24 import java.security.KeyStore;
25
26 import javax.swing.AbstractAction;
27 import javax.swing.Action;
28 import javax.swing.JPanel;
29 import javax.swing.JToolBar;
30
31 import net.pterodactylus.util.swing.StatusBar;
32
33 /**
34  * TODO
35  *
36  * @author David Roden <droden@gmail.com>
37  */
38 public class KeyStorePanel extends JPanel {
39
40         /** The displayed key store. */
41         private final KeyStore keyStore;
42
43         /** The tool bar. */
44         private final JToolBar toolBar = new JToolBar();
45
46         /** The status bar. */
47         private final StatusBar statusBar = new StatusBar();
48
49         /** The action to create a new key. */
50         private Action createKeyAction;
51
52         /**
53          * Creates a new key store panel that displays and controls the given key
54          * store.
55          *
56          * @param keyStore
57          *            The key store to display
58          */
59         public KeyStorePanel(KeyStore keyStore) {
60                 super(new BorderLayout());
61                 this.keyStore = keyStore;
62                 constructActions();
63                 constructPanel();
64                 statusBar.setText(keyStore.getType() + " Key Store");
65         }
66
67         //
68         // PRIVATE ACTIONS
69         //
70
71         /**
72          * Executed by {@link #createKeyAction}.
73          */
74         private void createKey() {
75                 /* TODO */
76         }
77
78         //
79         // PRIVATE METHODS
80         //
81
82         /**
83          * Constructs all used actions.
84          */
85         private void constructActions() {
86                 createKeyAction = new AbstractAction("Create Key") {
87
88                         /**
89                          * {@inheritDoc}
90                          */
91                         @SuppressWarnings("synthetic-access")
92                         public void actionPerformed(ActionEvent actionEvent) {
93                                 createKey();
94                         }
95                 };
96         }
97
98         /**
99          * Constructs the main panel.
100          */
101         private void constructPanel() {
102                 toolBar.add(createKeyAction);
103
104                 add(toolBar, BorderLayout.PAGE_START);
105                 add(statusBar, BorderLayout.PAGE_END);
106         }
107
108 }