Add javadoc comments.
[jkeytool.git] / 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);