Add javadoc comments.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 26 Jan 2009 23:57:55 +0000 (00:57 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 26 Jan 2009 23:57:55 +0000 (00:57 +0100)
src/net/pterodactylus/jkeytool/gui/swing/KeyStorePanel.java

index 3c064d6..add7581 100644 (file)
@@ -68,14 +68,20 @@ public class KeyStorePanel extends JPanel {
        // PRIVATE ACTIONS
        //
 
+       /**
+        * Executed by {@link #createKeyAction}.
+        */
        private void createKey() {
-
+               /* TODO */
        }
 
        //
        // PRIVATE METHODS
        //
 
+       /**
+        * Constructs all used actions.
+        */
        private void constructActions() {
                createKeyAction = new AbstractAction("Create Key") {
 
@@ -89,6 +95,9 @@ public class KeyStorePanel extends JPanel {
                };
        }
 
+       /**
+        * Constructs the main panel.
+        */
        private void constructPanel() {
                toolBar.add(createKeyAction);