javadoc comments fixed

cusax-fix
Yana Stamcheva 20 years ago
parent d4f659764d
commit 08d9245336

@ -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);

@ -195,8 +195,7 @@ public boolean isModal() {
/**
* 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) {

@ -528,9 +528,8 @@ public void setShown(boolean isShown)
}
/**
* 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 void createCall(String contact)
/**
* 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)
{

@ -72,7 +72,8 @@ public CallPanel(CallManager callManager, Call call, String callType)
/**
* 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 CallPanel(CallManager callManager, Vector contacts)
/**
* 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)
{

@ -9,7 +9,6 @@
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,

@ -131,8 +131,8 @@ public void protoContactAdded(ProtoContactEvent evt)
*/
public void protoContactRemoved(ProtoContactEvent evt)
{
System.out.println("REMOVE PROTO CONTACT");
this.modifyContact(evt.getOldParent());
this.modifyContact(evt.getNewParent());
}
/**

Loading…
Cancel
Save