Use new interface.
[jkeytool.git] / src / net / pterodactylus / jkeytool / gui / AbstractKeyStorePanel.java
1 /*
2  * jkeytool - KeystoreWindow.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;
21
22 import java.awt.BorderLayout;
23 import java.security.KeyStore;
24
25 import javax.swing.JPanel;
26
27 /**
28  * A {@link JPanel} that displays all key store entries and information about
29  * them.
30  *
31  * @author David Roden <droden@gmail.com>
32  */
33 public abstract class AbstractKeyStorePanel extends JPanel {
34
35         /** The key store. */
36         protected final KeyStore keyStore;
37
38         /**
39          * Creates a new key store panel.
40          *
41          * @param keyStore
42          *            The key store to display
43          */
44         protected AbstractKeyStorePanel(KeyStore keyStore) {
45                 super(new BorderLayout());
46                 this.keyStore = keyStore;
47         }
48
49         //
50         // SUBCLASS METHODS
51         //
52
53         /**
54          * Creates the panel that lets the user select a key store entry and adds it
55          * to this key store panel. The created panel should be placed in the
56          * {@link BorderLayout#WEST} or {@link BorderLayout#NORTH} area of the key
57          * store panel.
58          */
59         protected abstract void createEntryPanel();
60
61         //
62         // PROTECTED METHODS
63         //
64
65         /**
66          * Called by a subclass when a key store entry has been selected.
67          *
68          * @param alias
69          *            The selected key store entry alias, or <code>null</code> if no
70          *            entry has been selected or the selection has been cleared
71          */
72         protected void selectedEntry(String alias) {
73                 System.out.println(alias);
74         }
75
76         /**
77          * Creates the content panels.
78          */
79         protected void construct() {
80                 createEntryPanel();
81         }
82
83         //
84         // PRIVATE METHODS
85         //
86
87 }