Make CallScreening.CallResponse static

A small mistake in my previous CL. The response object
needs to be static.

Change-Id: Idf9bca7a7076275f53475c2531090f406daecab9
This commit is contained in:
Sailesh Nepal
2016-01-27 16:45:51 -08:00
parent c0b2f09a92
commit f44607142f
4 changed files with 8 additions and 8 deletions

View File

@@ -35395,14 +35395,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);

View File

@@ -37701,14 +37701,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);

View File

@@ -35409,14 +35409,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);

View File

@@ -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;