summaryrefslogtreecommitdiffstats
path: root/core/java/android/service
diff options
context:
space:
mode:
authorChristoph Studer <chstuder@google.com>2014-08-26 19:21:31 +0200
committerChristoph Studer <chstuder@google.com>2014-08-26 19:32:29 +0200
commitce7d6d292b2309eff95d4206b09858f13fff5213 (patch)
tree861eb3b4a385439b7ba166645c587816457d69b8 /core/java/android/service
parent5369d7a9317a137ca0b7ad43c889203a7669626f (diff)
downloadframeworks_base-ce7d6d292b2309eff95d4206b09858f13fff5213.zip
frameworks_base-ce7d6d292b2309eff95d4206b09858f13fff5213.tar.gz
frameworks_base-ce7d6d292b2309eff95d4206b09858f13fff5213.tar.bz2
NoListener: meetsInterruptionFilter -> matchesInterruptionFilter
Rename Ranking.meetsInterruptionFilter() to matchesInterruptionFilter() as suggested by API council. Marking the old version @removed for now, will remove once prebuilds had the chance to update. Bug: 17255109 Change-Id: Iaee094df2dddf82029e127c194ea88581d1a48bb
Diffstat (limited to 'core/java/android/service')
-rw-r--r--core/java/android/service/notification/NotificationListenerService.java18
1 files changed, 14 insertions, 4 deletions
diff --git a/core/java/android/service/notification/NotificationListenerService.java b/core/java/android/service/notification/NotificationListenerService.java
index 4651d7e..450b9a7 100644
--- a/core/java/android/service/notification/NotificationListenerService.java
+++ b/core/java/android/service/notification/NotificationListenerService.java
@@ -539,7 +539,7 @@ public abstract class NotificationListenerService extends Service {
private String mKey;
private int mRank = -1;
private boolean mIsAmbient;
- private boolean mMeetsInterruptionFilter;
+ private boolean mMatchesInterruptionFilter;
public Ranking() {}
@@ -571,17 +571,27 @@ public abstract class NotificationListenerService extends Service {
/**
* Returns whether the notification meets the user's interruption
* filter.
+ *
+ * @removed
*/
public boolean meetsInterruptionFilter() {
- return mMeetsInterruptionFilter;
+ return mMatchesInterruptionFilter;
+ }
+
+ /**
+ * Returns whether the notification matches the user's interruption
+ * filter.
+ */
+ public boolean matchesInterruptionFilter() {
+ return mMatchesInterruptionFilter;
}
private void populate(String key, int rank, boolean isAmbient,
- boolean meetsInterruptionFilter) {
+ boolean matchesInterruptionFilter) {
mKey = key;
mRank = rank;
mIsAmbient = isAmbient;
- mMeetsInterruptionFilter = meetsInterruptionFilter;
+ mMatchesInterruptionFilter = matchesInterruptionFilter;
}
}