aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2006-10-31 14:27:49 +0000
committerYana Stamcheva <yana@jitsi.org>2006-10-31 14:27:49 +0000
commit08d9245336ae536d936eebadddbdb4b48fc608f9 (patch)
treeee212aaf0e58c399593fca8f3694baa3ffe9d58a
parentd4f659764d63ac2973ee3845e64d966d6e55211a (diff)
downloadjitsi-08d9245336ae536d936eebadddbdb4b48fc608f9.zip
jitsi-08d9245336ae536d936eebadddbdb4b48fc608f9.tar.gz
jitsi-08d9245336ae536d936eebadddbdb4b48fc608f9.tar.bz2
javadoc comments fixed
-rw-r--r--src/net/java/sip/communicator/impl/gui/customcontrols/SIPCommTabbedPane.java4
-rw-r--r--src/net/java/sip/communicator/impl/gui/customcontrols/wizard/Wizard.java3
-rw-r--r--src/net/java/sip/communicator/impl/gui/main/call/CallManager.java7
-rw-r--r--src/net/java/sip/communicator/impl/gui/main/call/CallPanel.java6
-rw-r--r--src/net/java/sip/communicator/impl/gui/main/call/GuiCallRecord.java11
-rw-r--r--src/net/java/sip/communicator/impl/gui/main/contactlist/ContactList.java2
6 files changed, 16 insertions, 17 deletions
diff --git a/src/net/java/sip/communicator/impl/gui/customcontrols/SIPCommTabbedPane.java b/src/net/java/sip/communicator/impl/gui/customcontrols/SIPCommTabbedPane.java
index 2c1bbf8..4742875 100644
--- a/src/net/java/sip/communicator/impl/gui/customcontrols/SIPCommTabbedPane.java
+++ b/src/net/java/sip/communicator/impl/gui/customcontrols/SIPCommTabbedPane.java
@@ -36,8 +36,8 @@ public class SIPCommTabbedPane extends JTabbedPane {
* Creates the <code>CloseAndMaxTabbedPane</code> with an enhanced UI if
* <code>enhancedUI</code> parameter is set to <code>true</code>.
*
- * @param enhancedUI
- * whether the tabbedPane should use an enhanced UI
+ * @param closingTabs support for closable tabs
+ * @param maximizingTabs support for maximisable tabs
*/
public SIPCommTabbedPane(boolean closingTabs, boolean maximizingTabs) {
super.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
diff --git a/src/net/java/sip/communicator/impl/gui/customcontrols/wizard/Wizard.java b/src/net/java/sip/communicator/impl/gui/customcontrols/wizard/Wizard.java
index 4719a89..23900ad 100644
--- a/src/net/java/sip/communicator/impl/gui/customcontrols/wizard/Wizard.java
+++ b/src/net/java/sip/communicator/impl/gui/customcontrols/wizard/Wizard.java
@@ -195,8 +195,7 @@ public class Wizard extends WindowAdapter
/**
* Convienence method that displays a modal wizard dialog and blocks until
* the dialog has completed.
- * @return Indicates how the dialog was closed. Compare this value against
- * the RETURN_CODE constants at the beginning of the class.
+ * @param modal whether to show a modal dialog
*/
public void showDialog(boolean modal) {
diff --git a/src/net/java/sip/communicator/impl/gui/main/call/CallManager.java b/src/net/java/sip/communicator/impl/gui/main/call/CallManager.java
index 40074c9..fdf1a59 100644
--- a/src/net/java/sip/communicator/impl/gui/main/call/CallManager.java
+++ b/src/net/java/sip/communicator/impl/gui/main/call/CallManager.java
@@ -528,9 +528,8 @@ public class CallManager
}
/**
- * Answers the given callParticipant.
- * @param pps the protocol provider to use
- * @param callParticipant the call participant to answer to
+ * Answers the given call.
+ * @param call the call to answer
*/
public void answerCall(Call call)
{
@@ -564,7 +563,7 @@ public class CallManager
/**
* Creates a call to the given contact.
*
- * @param contact the protocol contact to call to
+ * @param contacts the list of contacts to call to
*/
public void createCall(Vector contacts)
{
diff --git a/src/net/java/sip/communicator/impl/gui/main/call/CallPanel.java b/src/net/java/sip/communicator/impl/gui/main/call/CallPanel.java
index a66d16c..97235c7 100644
--- a/src/net/java/sip/communicator/impl/gui/main/call/CallPanel.java
+++ b/src/net/java/sip/communicator/impl/gui/main/call/CallPanel.java
@@ -72,7 +72,8 @@ public class CallPanel
/**
* Creates an instance of CallPanel for the given call and call type.
- * @param call the call
+ * @param callManager the CallManager that manages this panel
+ * @param contacts the list of contacts for this call panel
*/
public CallPanel(CallManager callManager, Vector contacts)
{
@@ -110,7 +111,8 @@ public class CallPanel
/**
* Creates an instance of CallPanel for the given call and call type.
- * @param call the call
+ * @param callManager the CallManager that manages this call panel
+ * @param contactString the contact string that we are calling
*/
public CallPanel(CallManager callManager, String contactString)
{
diff --git a/src/net/java/sip/communicator/impl/gui/main/call/GuiCallRecord.java b/src/net/java/sip/communicator/impl/gui/main/call/GuiCallRecord.java
index 027615b..3230644 100644
--- a/src/net/java/sip/communicator/impl/gui/main/call/GuiCallRecord.java
+++ b/src/net/java/sip/communicator/impl/gui/main/call/GuiCallRecord.java
@@ -9,7 +9,6 @@ package net.java.sip.communicator.impl.gui.main.call;
import java.util.*;
import net.java.sip.communicator.service.callhistory.*;
-import net.java.sip.communicator.service.protocol.*;
/**
* The <tt>GuiCallRecord</tt> is meant to be used in the call history to
@@ -27,11 +26,11 @@ public class GuiCallRecord
private Date endTime;
/**
- *
- * @param guiParticipantRecords
- * @param direction
- * @param startTime
- * @param endTime
+ * Creates an instance of <tt>GuiCallRecord<tt>.
+ * @param guiParticipantRecords participant records contained in this call
+ * record
+ * @param startTime call start time
+ * @param endTime call end time
*/
public GuiCallRecord(Vector guiParticipantRecords,
Date startTime,
diff --git a/src/net/java/sip/communicator/impl/gui/main/contactlist/ContactList.java b/src/net/java/sip/communicator/impl/gui/main/contactlist/ContactList.java
index 196d7b6..ea5daaf 100644
--- a/src/net/java/sip/communicator/impl/gui/main/contactlist/ContactList.java
+++ b/src/net/java/sip/communicator/impl/gui/main/contactlist/ContactList.java
@@ -131,8 +131,8 @@ public class ContactList extends JList
*/
public void protoContactRemoved(ProtoContactEvent evt)
{
+ System.out.println("REMOVE PROTO CONTACT");
this.modifyContact(evt.getOldParent());
- this.modifyContact(evt.getNewParent());
}
/**