diff options
| author | 2016-01-28 01:07:24 +0000 | |
|---|---|---|
| committer | 2016-01-28 01:07:24 +0000 | |
| commit | 35c205862f240b85fac455f84bc06b7d44aa4077 (patch) | |
| tree | 88b4dfd6248bcf3c27d6f62896985d49e134b4ac | |
| parent | b79a68368bb6aa3100140d6fdd276fe52ad29244 (diff) | |
| parent | f44607142f2793773fb240d73ff0cfc2aba1165b (diff) | |
Merge "Make CallScreening.CallResponse static"
| -rw-r--r-- | api/current.txt | 4 | ||||
| -rw-r--r-- | api/system-current.txt | 4 | ||||
| -rw-r--r-- | api/test-current.txt | 4 | ||||
| -rw-r--r-- | telecomm/java/android/telecom/CallScreeningService.java | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/api/current.txt b/api/current.txt index 50f8b21919c7..a311eeb4d78f 100644 --- a/api/current.txt +++ b/api/current.txt @@ -35427,14 +35427,14 @@ package android.telecom { field public static final java.lang.String SERVICE_INTERFACE = "android.telecom.CallScreeningService"; } - public class CallScreeningService.CallResponse { + public static class CallScreeningService.CallResponse { method public boolean getDisallowCall(); method public boolean getRejectCall(); method public boolean getSkipCallLog(); method public boolean getSkipNotification(); } - public class CallScreeningService.CallResponse.Builder { + public static class CallScreeningService.CallResponse.Builder { ctor public CallScreeningService.CallResponse.Builder(); method public android.telecom.CallScreeningService.CallResponse build(); method public android.telecom.CallScreeningService.CallResponse.Builder setDisallowCall(boolean); diff --git a/api/system-current.txt b/api/system-current.txt index b876ca95715e..40c62acf0c97 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -37735,14 +37735,14 @@ package android.telecom { field public static final java.lang.String SERVICE_INTERFACE = "android.telecom.CallScreeningService"; } - public class CallScreeningService.CallResponse { + public static class CallScreeningService.CallResponse { method public boolean getDisallowCall(); method public boolean getRejectCall(); method public boolean getSkipCallLog(); method public boolean getSkipNotification(); } - public class CallScreeningService.CallResponse.Builder { + public static class CallScreeningService.CallResponse.Builder { ctor public CallScreeningService.CallResponse.Builder(); method public android.telecom.CallScreeningService.CallResponse build(); method public android.telecom.CallScreeningService.CallResponse.Builder setDisallowCall(boolean); diff --git a/api/test-current.txt b/api/test-current.txt index 57332a295b21..d28c463a559b 100644 --- a/api/test-current.txt +++ b/api/test-current.txt @@ -35441,14 +35441,14 @@ package android.telecom { field public static final java.lang.String SERVICE_INTERFACE = "android.telecom.CallScreeningService"; } - public class CallScreeningService.CallResponse { + public static class CallScreeningService.CallResponse { method public boolean getDisallowCall(); method public boolean getRejectCall(); method public boolean getSkipCallLog(); method public boolean getSkipNotification(); } - public class CallScreeningService.CallResponse.Builder { + public static class CallScreeningService.CallResponse.Builder { ctor public CallScreeningService.CallResponse.Builder(); method public android.telecom.CallScreeningService.CallResponse build(); method public android.telecom.CallScreeningService.CallResponse.Builder setDisallowCall(boolean); diff --git a/telecomm/java/android/telecom/CallScreeningService.java b/telecomm/java/android/telecom/CallScreeningService.java index 1b6e16221f9b..f62b170989ad 100644 --- a/telecomm/java/android/telecom/CallScreeningService.java +++ b/telecomm/java/android/telecom/CallScreeningService.java @@ -89,7 +89,7 @@ public abstract class CallScreeningService extends Service { /* * Information about how to respond to an incoming call. */ - public class CallResponse { + public static class CallResponse { private final boolean mShouldDisallowCall; private final boolean mShouldRejectCall; private final boolean mShouldSkipCallLog; @@ -140,7 +140,7 @@ public abstract class CallScreeningService extends Service { return mShouldSkipNotification; } - public class Builder { + public static class Builder { private boolean mShouldDisallowCall; private boolean mShouldRejectCall; private boolean mShouldSkipCallLog; |