diff options
author | Evan Charlton <evanc@google.com> | 2014-04-01 13:50:07 -0700 |
---|---|---|
committer | Evan Charlton <evanc@google.com> | 2014-04-01 13:50:07 -0700 |
commit | 8acdbb8b11315f9b619d8831ef6113ea52ffbdbe (patch) | |
tree | 9420cd0e0ee86264aeb93671af396ebd0f0a232f /telecomm | |
parent | da7ff92c48d02400e76ed1ea44c7de19b3079e97 (diff) | |
download | frameworks_base-8acdbb8b11315f9b619d8831ef6113ea52ffbdbe.zip frameworks_base-8acdbb8b11315f9b619d8831ef6113ea52ffbdbe.tar.gz frameworks_base-8acdbb8b11315f9b619d8831ef6113ea52ffbdbe.tar.bz2 |
Fix the build
Fix some broken javadocs which are breaking the SDK build.
Change-Id: I9b432ad1e871a82391c12ddbbd34cb64a556b2fe
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecomm/InCallAdapter.java | 14 | ||||
-rw-r--r-- | telecomm/java/android/telecomm/InCallService.java | 10 |
2 files changed, 12 insertions, 12 deletions
diff --git a/telecomm/java/android/telecomm/InCallAdapter.java b/telecomm/java/android/telecomm/InCallAdapter.java index 4f32458..2933f17 100644 --- a/telecomm/java/android/telecomm/InCallAdapter.java +++ b/telecomm/java/android/telecomm/InCallAdapter.java @@ -165,15 +165,15 @@ public final class InCallAdapter { * A post-dial DTMF string is a string of digits entered after a phone number, when dialed, * that are immediately sent as DTMF tones to the recipient as soon as the connection is made. * While these tones are playing, Telecomm will notify the {@link InCallService} that the call - * is in the {@link InCallService#setPostDial(String)} state. + * is in the {@link InCallService#setPostDial(String,String)} state. * - * If the DTMF string contains a {@link #DTMF_CHARACTER_PAUSE} symbol, Telecomm will temporarily - * pause playing the tones for a pre-defined period of time. + * If the DTMF string contains a {@link TelecommConstants#DTMF_CHARACTER_PAUSE} symbol, Telecomm + * will temporarily pause playing the tones for a pre-defined period of time. * - * If the DTMF string contains a {@link #DTMF_CHARACTER_WAIT} symbol, Telecomm will pause - * playing the tones and notify the {@link InCallService} that the call is in the - * {@link InCallService#setPostDialWait(String)} state. When the user decides to continue the - * postdial sequence, the {@link InCallService} should invoke the + * If the DTMF string contains a {@link TelecommConstants#DTMF_CHARACTER_WAIT} symbol, Telecomm + * will pause playing the tones and notify the {@link InCallService} that the call is in the + * {@link InCallService#setPostDialWait(String,String)} state. When the user decides to continue + * the postdial sequence, the {@link InCallService} should invoke the * {@link #postDialContinue(String)} method. * * @param callId The unique ID of the call for which postdial string playing should continue. diff --git a/telecomm/java/android/telecomm/InCallService.java b/telecomm/java/android/telecomm/InCallService.java index 8131815..1d57ae9 100644 --- a/telecomm/java/android/telecomm/InCallService.java +++ b/telecomm/java/android/telecomm/InCallService.java @@ -201,7 +201,7 @@ public abstract class InCallService extends Service { /** * Indicates to the in-call app that the specified call is currently connected to another party * and a communication channel is open between them. Normal transitions are to - * {@link #setDisconnected(String)} when the call is complete. + * {@link #setDisconnected(String,int)} when the call is complete. * * @param callId The identifier of the call changing state. */ @@ -211,7 +211,7 @@ public abstract class InCallService extends Service { * Indicates to the in-call app that the specified call is outgoing and in the dialing state. * Normal transition are to {@link #setActive(String)} if the call was answered, * {@link #setPostDial(String,String)} if the dialed number includes a post-dial DTMF string, or - * {@link #setDisconnected(String)} if the call was disconnected immediately. + * {@link #setDisconnected(String,int)} if the call was disconnected immediately. * * @param callId The identifier of the call changing state. */ @@ -221,8 +221,8 @@ public abstract class InCallService extends Service { * Indicates to the in-call app that the specified call is incoming and the user still has the * option of answering, rejecting, or doing nothing with the call. This state is usually * associated with some type of audible ringtone. Normal transitions are to - * {@link #setActive(String)} if the call is answered, or {@link #setDisconnected(String)} if - * the call is not answered or is otherwise disconnected for some reason. + * {@link #setActive(String)} if the call is answered, or {@link #setDisconnected(String,int)} + * if the call is not answered or is otherwise disconnected for some reason. * * @param callId The identifier of the call changing state. */ @@ -258,7 +258,7 @@ public abstract class InCallService extends Service { * where Telecomm is now sending some dual-tone multi-frequency signaling (DTMF) tones appended * to the dialed number. Normal transitions are to {@link #setPostDialWait(String,String)} when * the post-dial string requires user confirmation to proceed, {@link #setActive(String)} when - * the post-dial tones are completed, or {@link #setDisconnected(String)} if the call is + * the post-dial tones are completed, or {@link #setDisconnected(String,int)} if the call is * disconnected. * * @param callId The identifier of the call changing state. |