Skip to content

Commit

Permalink
Add two little javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
mbax committed Feb 3, 2019
1 parent 7bb8c90 commit f8a2c75
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@

import java.util.List;

/**
* Abstract base class for batch related events.
*
* @see BatchEvent
*/
public class ClientBatchEventBase extends ServerMessageEventBase implements BatchEvent {
private final BatchReferenceTag tag;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,10 @@
* An event involving batched messages.
*/
public interface BatchEvent extends ServerMessageEvent {
/**
* Gets the reference tag.
*
* @return reference tag
*/
@NonNull BatchReferenceTag getReferenceTag();
}

0 comments on commit f8a2c75

Please sign in to comment.