diff options
author | Evan Charlton <evanc@google.com> | 2014-02-21 13:53:01 -0800 |
---|---|---|
committer | Evan Charlton <evanc@google.com> | 2014-02-21 14:08:44 -0800 |
commit | 832ddb3fe66a73cdf383ea2700ae48f88ad9ded0 (patch) | |
tree | 831076f11aa5a39c74e62506f40fb20023372484 /telecomm | |
parent | d41b3af056fa7ac1e6e3c12168eb462265943c7f (diff) | |
download | frameworks_base-832ddb3fe66a73cdf383ea2700ae48f88ad9ded0.zip frameworks_base-832ddb3fe66a73cdf383ea2700ae48f88ad9ded0.tar.gz frameworks_base-832ddb3fe66a73cdf383ea2700ae48f88ad9ded0.tar.bz2 |
Fix some javadocs
Fix some bad {@link ..} tags in the javadocs.
Change-Id: Id64b901218878e9996a390fee9eb72e4b5cd9d93
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecomm/CallService.java | 6 | ||||
-rw-r--r-- | telecomm/java/android/telecomm/ICallService.aidl | 4 | ||||
-rw-r--r-- | telecomm/java/android/telecomm/TelecommConstants.java | 2 |
3 files changed, 6 insertions, 6 deletions
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.</p> * - * <p>Input: get*Extra field {@link #EXTRA_CALL_SERVICE} contains the component name + * <p>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. * |