Added some comments.

fix-message-formatting
Danny van Heumen 12 years ago
parent a2816b156c
commit 303ad92a9e

@ -22,6 +22,9 @@
public class ProtocolProviderFactoryIrcImpl
extends ProtocolProviderFactory
{
/**
* Constructor
*/
public ProtocolProviderFactoryIrcImpl()
{
super(IrcActivator.getBundleContext(), ProtocolNames.IRC);
@ -76,6 +79,11 @@ public AccountID installAccount( String userIDStr,
return accountID;
}
/**
* Create an IRC Account ID.
*
* {@inheritDoc}
*/
@Override
protected AccountID createAccountID(
String userID,
@ -84,6 +92,11 @@ protected AccountID createAccountID(
return new IrcAccountID(userID, accountProperties);
}
/**
* Create an IRC provider service.
*
* {@inheritDoc}
*/
@Override
protected ProtocolProviderService createService(String userID,
AccountID accountID)
@ -95,6 +108,11 @@ protected ProtocolProviderService createService(String userID,
return service;
}
/**
* Modify an existing IRC account.
*
* {@inheritDoc}
*/
@Override
public void modifyAccount( ProtocolProviderService protocolProvider,
Map<String, String> accountProperties)

Loading…
Cancel
Save