Merge "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()" into jb-mr2-dev
This commit is contained in:
@@ -190,13 +190,13 @@ public class StatusBarNotification implements Parcelable {
|
|||||||
return pkg;
|
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() {
|
public int getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The tag supplied to {@link android.app.NotificationManager#notify}, or null if no tag
|
/** The tag supplied to {@link android.app.NotificationManager#notify(int,Notification)},
|
||||||
* was specified. */
|
* or null if no tag was specified. */
|
||||||
public String getTag() {
|
public String getTag() {
|
||||||
return tag;
|
return tag;
|
||||||
}
|
}
|
||||||
@@ -217,7 +217,7 @@ public class StatusBarNotification implements Parcelable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** The {@link android.app.Notification} supplied to
|
/** The {@link android.app.Notification} supplied to
|
||||||
* {@link android.app.NotificationManager#notify}. */
|
* {@link android.app.NotificationManager#notify(int,Notification)}. */
|
||||||
public Notification getNotification() {
|
public Notification getNotification() {
|
||||||
return notification;
|
return notification;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user