Fixed broken javadoc comments

cusax-fix
Emil Ivov 20 years ago
parent 234c5d3b9d
commit 11ac35e7a3

@ -61,9 +61,10 @@ oscar.auto.start.5= \
file:sc-bundles/netaddr-slick.jar \
file:sc-bundles/fileaccess-slick.jar \
file:sc-bundles/history-slick.jar \
file:sc-bundles/protocol-icq-slick.jar \
file:sc-bundles/meta-cl-slick.jar
# file:sc-bundles/protocol-icq-slick.jar \
oscar.auto.start.100= \
file:sc-bundles/slick-runner.jar

@ -3,11 +3,19 @@
# A list of all tests that should be run by the test target of the project.
#test.list=ConfigurationServiceLick \
# MediaServiceLick \
# NetworkAddressManagerServiceLick \
# FileAccessServiceLick \
# HistoryServiceLick \
# SlicklessTests \
# IcqProtocolProviderSlick \
# MetaContactListServiceLick
test.list=ConfigurationServiceLick \
MediaServiceLick \
NetworkAddressManagerServiceLick \
FileAccessServiceLick \
HistoryServiceLick \
SlicklessTests \
IcqProtocolProviderSlick \
MetaContactListServiceLick

@ -210,9 +210,10 @@ public void addNewContactToMetaContact(
* be associated to.
* @param contactID
* the identifier of the contact that the specified provider
* @param eventID
* the event type that should be generated. Used when this method
* is called upon creation of a new meta contact and not only a new contact.
* @param fireEvent
* specifies whether or not an even is to be faire at
* the end of the method.Used when this method is called upon creation of a
* new meta contact and not only a new contact.
* @throws MetaContactListException
* with an appropriate code if the operation fails for some
* reason.
@ -647,8 +648,8 @@ public MetaContactGroup getRoot()
* Sets the display name for <tt>metaContact</tt> to be <tt>newName</tt>.
* <p>
* @param metaContact the <tt>MetaContact</tt> that we are renaming
* @param newName a <tt>String</tt> containing the new display name for
* <tt>metaContact</tt>.
* @param newDisplayName a <tt>String</tt> containing the new display name
* for <tt>metaContact</tt>.
* @throws IllegalArgumentException if <tt>metaContact</tt> is not an
* instance that belongs to the underlying implementation.
*/
@ -1814,7 +1815,15 @@ else if (event instanceof MetaContactRenamedEvent)
* notifies all <tt>MetaContactListListener</tt>s that a protocol specific
* <tt>Contact</tt> has been added moved or removed.
*
* @param source the event to dispatch.
* @param source the contact that has caused the event.
* @param eventName One of the ProtoContactEvent.PROTO_CONTACT_XXX fields
* indicating the exact type of the event.
* @param oldParent the <tt>MetaContact</tt> that was wrapping the source
* <tt>Contact</tt> before the event occurred or <tt>null</tt> if the event
* is caused by adding a new <tt>Contact</tt>
* @param newParent the <tt>MetaContact</tt> that is wrapping the source
* <tt>Contact</tt> after the event occurred or <tt>null</tt> if the event
* is caused by removing a <tt>Contact</tt>
*/
private void fireProtoContactEvent(Contact source,
String eventName,

@ -22,8 +22,8 @@ public class MetaContactMovedEvent
/**
* Createas an instance of this <tt>MetaContactMovedEvent</tt> using the
* specified arguments.
* @param source a reference to the <tt>MetaContact</tt> that this event
* is about.
* @param sourceContact a reference to the <tt>MetaContact</tt> that this
* event is about.
* @param oldParent a reference to the <tt>MetaContactGroup</tt> that
* contained <tt>sourceContact</tt> before it was moved.
* @param newParent a refenrece to the <tt>MetaContactGroup</tt> that

@ -25,7 +25,8 @@ public class TypingNotificationEvent
/**
* Creats a TypingNotificationEvent with the specified parameters.
* <p>
* @param source Object
* @param sourceContact the <tt>Contact</tt> that has sen the notification.
* @param state
*/
public TypingNotificationEvent(Contact sourceContact, int state)
{

Loading…
Cancel
Save