From 832ddb3fe66a73cdf383ea2700ae48f88ad9ded0 Mon Sep 17 00:00:00 2001 From: Evan Charlton Date: Fri, 21 Feb 2014 13:53:01 -0800 Subject: Fix some javadocs Fix some bad {@link ..} tags in the javadocs. Change-Id: Id64b901218878e9996a390fee9eb72e4b5cd9d93 --- telecomm/java/android/telecomm/CallService.java | 6 +++--- telecomm/java/android/telecomm/ICallService.aidl | 4 ++-- telecomm/java/android/telecomm/TelecommConstants.java | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'telecomm') diff --git a/telecomm/java/android/telecomm/CallService.java b/telecomm/java/android/telecomm/CallService.java index 7144653..9bad3ad 100644 --- a/telecomm/java/android/telecomm/CallService.java +++ b/telecomm/java/android/telecomm/CallService.java @@ -29,7 +29,7 @@ import com.android.internal.os.SomeArgs; * in-call UI. CallService is a one-way service from the framework's CallsManager to any app * that would like to provide calls managed by the default system in-call user interface. * When the service is bound by the framework, CallsManager will call setCallServiceAdapter - * which will provide CallService with an instance of {@link CallServiceAdapter} to be used + * which will provide CallService with an instance of {@link ICallServiceAdapter} to be used * for communicating back to CallsManager. Subsequently, more specific methods of the service * will be called to perform various call actions including making an outgoing call and * disconnected existing calls. @@ -168,8 +168,8 @@ public abstract class CallService extends Service { * SIP address, or some other kind of user ID. Note that the set of handle types is * dynamically extensible since call providers should be able to implement arbitrary * handle-calling systems. See {@link #isCompatibleWith}. It is expected that the - * call service respond via {@link ICallServiceAdapter#handleIncomingCall} if it can - * successfully make the call. + * call service respond via {@link ICallServiceAdapter#handleSuccessfulOutgoingCall(String)} + * if it can successfully make the call. * * @param callInfo The details of the relevant call. */ diff --git a/telecomm/java/android/telecomm/ICallService.aidl b/telecomm/java/android/telecomm/ICallService.aidl index cfd09c8..393a1be 100644 --- a/telecomm/java/android/telecomm/ICallService.aidl +++ b/telecomm/java/android/telecomm/ICallService.aidl @@ -59,8 +59,8 @@ oneway interface ICallService { * SIP address, or some other kind of user ID. Note that the set of handle types is * dynamically extensible since call providers should be able to implement arbitrary * handle-calling systems. See {@link #isCompatibleWith}. It is expected that the - * call service respond via {@link ICallServiceAdapter#newOutgoingCall} if it can successfully - * make the call. + * call service respond via {@link ICallServiceAdapter#handleSuccessfulOutgoingCall} if it can + * successfully make the call. * TODO(santoscordon): Figure out how a calls service can short-circuit a failure to * the adapter. * diff --git a/telecomm/java/android/telecomm/TelecommConstants.java b/telecomm/java/android/telecomm/TelecommConstants.java index a5ef344..b0651c8 100644 --- a/telecomm/java/android/telecomm/TelecommConstants.java +++ b/telecomm/java/android/telecomm/TelecommConstants.java @@ -27,7 +27,7 @@ public final class TelecommConstants { * and bind to the appropriate {@link android.telecomm.CallService} which Telecomm will * ultimately use to control and get information about the call.

* - *

Input: get*Extra field {@link #EXTRA_CALL_SERVICE} contains the component name + *

Input: get*Extra field {@link #EXTRA_CALL_SERVICE_DESCRIPTOR} contains the component name * of the {@link android.telecomm.CallService} that Telecomm should bind to. Telecomm will then * ask the call service for more information about the call prior to showing any UI. * -- cgit v1.1