summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2013-05-22 19:00:09 -0700
committerScott Main <smain@google.com>2013-05-22 19:00:09 -0700
commit26510320646339fc59e01d392f96efeeac6d91dd (patch)
treee057e8fe93b3da7e5e0dedebc88d30694c0bc8fd
parent1fa3cdf0cbc9bc788a313eda5d3ca3e2ad77fcc4 (diff)
downloadframeworks_base-26510320646339fc59e01d392f96efeeac6d91dd.zip
frameworks_base-26510320646339fc59e01d392f96efeeac6d91dd.tar.gz
frameworks_base-26510320646339fc59e01d392f96efeeac6d91dd.tar.bz2
fix javadoc links.
turns out, without parameters, javadoc will link to the best matching method signature, even if it's from the superclass. So these were pointing to Object.nofify() Change-Id: I13688f2b65e898d1f000a34c88d0aaed928884b5
-rw-r--r--core/java/android/service/notification/StatusBarNotification.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/service/notification/StatusBarNotification.java b/core/java/android/service/notification/StatusBarNotification.java
index e8cc24b..19f8678 100644
--- a/core/java/android/service/notification/StatusBarNotification.java
+++ b/core/java/android/service/notification/StatusBarNotification.java
@@ -190,13 +190,13 @@ public class StatusBarNotification implements Parcelable {
return pkg;
}
- /** The id supplied to {@link android.app.NotificationManager#notify}. */
+ /** The id supplied to {@link android.app.NotificationManager#notify(int,Notification)}. */
public int getId() {
return id;
}
- /** The tag supplied to {@link android.app.NotificationManager#notify}, or null if no tag
- * was specified. */
+ /** The tag supplied to {@link android.app.NotificationManager#notify(int,Notification)},
+ * or null if no tag was specified. */
public String getTag() {
return tag;
}
@@ -217,7 +217,7 @@ public class StatusBarNotification implements Parcelable {
}
/** The {@link android.app.Notification} supplied to
- * {@link android.app.NotificationManager#notify}. */
+ * {@link android.app.NotificationManager#notify(int,Notification)}. */
public Notification getNotification() {
return notification;
}