summaryrefslogtreecommitdiff
path: root/src/Client/UserInterface.java
diff options
context:
space:
mode:
authorDor Bivas <dor1_b@walla.com>2014-04-15 11:25:19 +0300
committerDor Bivas <dor1_b@walla.com>2014-04-15 11:25:19 +0300
commitb061c9e1f749f6e1392eaa9e1746e30f3a2a6d0d (patch)
treeb2ea3bf987b6c952bb66f4c62c3fd1eb65901a4f /src/Client/UserInterface.java
parent61b1467277e46d0ae87fe18b31419a849323b74c (diff)
Code documentation fixes
Diffstat (limited to 'src/Client/UserInterface.java')
-rw-r--r--src/Client/UserInterface.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Client/UserInterface.java b/src/Client/UserInterface.java
index df56ec3..984ecb6 100644
--- a/src/Client/UserInterface.java
+++ b/src/Client/UserInterface.java
@@ -138,7 +138,7 @@ public class UserInterface extends JFrame implements ActionListener, KeyListener
int counterClick = 0;
/** Syncing the the action that the button send to the perform
- * @param name of the action */
+ * @param e -name of the action */
public void actionPerformed(ActionEvent e)
{
String command = e.getActionCommand();
@@ -164,7 +164,7 @@ public class UserInterface extends JFrame implements ActionListener, KeyListener
}
/** Syncing the the action that the event caused to the perform
- * @param event key press */
+ * @param e - event key press */
@Override
public void keyPressed(KeyEvent e)
{
@@ -190,7 +190,7 @@ public class UserInterface extends JFrame implements ActionListener, KeyListener
}
/** Syncing the the action closing window to the shutdown
- * @param event window closing */
+ * @param e - event window closing */
public void windowClosing(WindowEvent e)
{
client.shutdown();