Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 24f051e

Browse files
committed
Updated javadocs.
1 parent d2fa8da commit 24f051e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

pushclient/src/main/java/com/devsu/library/pushclient/client/InitCallback.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,9 @@ public interface InitCallback {
1313
*/
1414
void onSuccess(String registrationId, boolean hasBeenUpdated);
1515

16+
/**
17+
* Callback when an error is thrown while fetching an ID.
18+
* @param throwable The throwable occurred while fetching an ID.
19+
*/
1620
void onError(Throwable throwable);
1721
}

pushclient/src/main/java/com/devsu/library/pushclient/client/PushClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ public static PushDelegate getDelegate() {
360360
}
361361

362362
/**
363-
* Class default values.
363+
* Default values for this class.
364364
*/
365365
private static class Defaults {
366366

pushclient/src/main/java/com/devsu/library/pushclient/delegate/SimpleNotificationDelegate.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ private void setDefaultValues(Context context) {
9494
}
9595

9696
/**
97-
* Handles the Notification message. It displays the Push Message using a Notification object.
98-
* @param context The context.
99-
* @param extras The intent extras that were produced by the Broadcast Receiver.
97+
* @see com.devsu.library.pushclient.delegate.PushDelegate#handleNotification(android.content.Context, android.os.Bundle)
10098
*/
10199
@Override
102100
public void handleNotification(Context context, Bundle extras) {

0 commit comments

Comments
 (0)