Updates documentation for MessagingStyle constructor

am: fd590441c1

Change-Id: I341c9a18c5a64e8cb63ad277611b9e55f61047c1
This commit is contained in:
Alex Hills
2016-10-07 20:43:57 +00:00
committed by android-build-merger

View File

@@ -19,6 +19,7 @@ package android.app;
import android.annotation.ColorInt;
import android.annotation.DrawableRes;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.annotation.SdkConstant;
import android.annotation.SdkConstant.SdkConstantType;
import android.annotation.SystemApi;
@@ -4649,12 +4650,12 @@ public class Notification implements Parcelable
}
/**
* @param userDisplayName the name to be displayed for any replies sent by the user before the
* posting app reposts the notification with those messages after they've been actually
* sent and in previous messages sent by the user added in
* @param userDisplayName Required - the name to be displayed for any replies sent by the
* user before the posting app reposts the notification with those messages after they've
* been actually sent and in previous messages sent by the user added in
* {@link #addMessage(Notification.MessagingStyle.Message)}
*/
public MessagingStyle(CharSequence userDisplayName) {
public MessagingStyle(@NonNull CharSequence userDisplayName) {
mUserDisplayName = userDisplayName;
}