javadoc comments - fixed

cusax-fix
Yana Stamcheva 20 years ago
parent ad445d7c84
commit 632eef9d59

@ -171,7 +171,7 @@ public void mouseReleased(MouseEvent e) {
/**
* Selects the given item.
* @param text The object to select.
* @param o The object to select.
* @param icon The icon to select.
*/
public void setSelected(Object o, Icon icon) {

@ -45,10 +45,7 @@ public MainTabbedPane(MainFrame parent) {
this.addTab(Messages.getString("contacts"), contactListPanel);
this.addTab(Messages.getString("callList"), new JPanel());
this.addTab(Messages.getString("dial"), dialPanel);
// Disable the tabs that containt not yet implemented functionalities.
this.setEnabledAt(1, false);
this.setEnabledAt(2, false);
}
/**

@ -51,7 +51,6 @@ public class WelcomeWindow extends JDialog
* @param c The application main class that runs the main application
* window.
* @param loginManager The login manager that runs all login windows.
* @param context The bundle context.
*/
public WelcomeWindow(CommunicatorMain c,
LoginManager loginManager) {

@ -20,7 +20,6 @@ public class ContactProtocolButton extends SIPCommButton {
/**
* Creates an instance of ContactProtocolButton.
* @param bgImage The background image of the button.
* @param rolloverImage The rollover image of the button.
*/
public ContactProtocolButton(Image bgImage) {
super(bgImage, bgImage);

@ -249,9 +249,9 @@ private void setChatMetaContact(MetaContact metaContact) {
}
/**
* Updates the contact status in the contact info panel.
* Updates the contact status in the chat panel.
*
* @param status The presence status of the contact.
* @param protoContact the protocol contact which status to update
*/
public void updateContactStatus(Contact protoContact) {
PresenceStatus status = protocolContact.getPresenceStatus();

@ -165,7 +165,7 @@ public void setStatusMessage(String statusMessage) {
* contacts and shows its icon in the component on the left of the "Send"
* button.
*
* @param protocolContact The protocol specific contact to select.
* @param protoContact The protocol specific contact to select.
*/
public void setSelectedProtocolContact(Contact protoContact)
{

Loading…
Cancel
Save