Merge "Add missing docs to notification style rebuilder functions." into jb-dev
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java
index ceb8cde..b2e69de 100644
--- a/core/java/android/app/Notification.java
+++ b/core/java/android/app/Notification.java
@@ -1731,6 +1731,9 @@
return this;
}
+ /**
+ * Provide the bitmap to be used as the payload for the BigPicture notification.
+ */
public BigPictureStyle bigPicture(Bitmap b) {
mPicture = b;
return this;
@@ -1809,6 +1812,10 @@
return this;
}
+ /**
+ * Provide the longer text to be displayed in the big form of the
+ * template in place of the content text.
+ */
public BigTextStyle bigText(CharSequence cs) {
mBigText = cs;
return this;
@@ -1889,6 +1896,9 @@
return this;
}
+ /**
+ * Append a line to the digest section of the Inbox notification.
+ */
public InboxStyle addLine(CharSequence cs) {
mTexts.add(cs);
return this;