Cleaned up some javadocs.

This commit is contained in:
akwizgran
2015-12-18 16:22:30 +00:00
parent 19bfe71f18
commit 7c869a6ebd
3 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ package org.briarproject.api.sync;
import java.util.Collection;
/** A packet acknowledging receipt of one or more {@link Message}s. */
/** A packet acknowledging receipt of one or more {@link Message Messages}. */
public class Ack {
private final Collection<MessageId> acked;

View File

@@ -2,7 +2,7 @@ package org.briarproject.api.sync;
import java.util.Collection;
/** A packet offering the recipient one or more {@link Message}s. */
/** A packet offering the recipient one or more {@link Message Messages}. */
public class Offer {
private final Collection<MessageId> offered;

View File

@@ -2,7 +2,9 @@ package org.briarproject.api.sync;
import java.util.Collection;
/** A packet requesting one or more {@link Message}s from the recipient. */
/**
* A packet requesting one or more {@link Message Messages} from the recipient.
*/
public class Request {
private final Collection<org.briarproject.api.sync.MessageId> requested;