Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b2a0e050 authored by Yohei Yukawa's avatar Yohei Yukawa
Browse files

Fix JavaDoc errors

Test: make -j checkbuild
Change-Id: Id68ebd3588cd286c821da49e3bda4299d311e8b9
parent 4d5420f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2754,7 +2754,7 @@ public class InputMethodService extends AbstractInputMethodService {
     * application.
     * application.
     * This cannot be {@code null}.
     * This cannot be {@code null}.
     * @param inputConnection {@link InputConnection} with which
     * @param inputConnection {@link InputConnection} with which
     * {@link InputConnection#commitContent(InputContentInfo, Bundle)} will be called.
     * {@link InputConnection#commitContent(InputContentInfo, int, Bundle)} will be called.
     * @hide
     * @hide
     */
     */
    @Override
    @Override
+10 −7
Original line number Original line Diff line number Diff line
@@ -337,20 +337,23 @@ public final class InputMethodManager {
    int mCursorCandEnd;
    int mCursorCandEnd;


    /**
    /**
     * Represents an invalid action notification sequence number. {@link InputMethodManagerService}
     * Represents an invalid action notification sequence number.
     * always issues a positive integer for action notification sequence numbers. Thus -1 is
     * {@link com.android.server.InputMethodManagerService} always issues a positive integer for
     * guaranteed to be different from any valid sequence number.
     * action notification sequence numbers. Thus {@code -1} is guaranteed to be different from any
     * valid sequence number.
     */
     */
    private static final int NOT_AN_ACTION_NOTIFICATION_SEQUENCE_NUMBER = -1;
    private static final int NOT_AN_ACTION_NOTIFICATION_SEQUENCE_NUMBER = -1;
    /**
    /**
     * The next sequence number that is to be sent to {@link InputMethodManagerService} via
     * The next sequence number that is to be sent to
     * {@link com.android.server.InputMethodManagerService} via
     * {@link IInputMethodManager#notifyUserAction(int)} at once when a user action is observed.
     * {@link IInputMethodManager#notifyUserAction(int)} at once when a user action is observed.
     */
     */
    private int mNextUserActionNotificationSequenceNumber =
    private int mNextUserActionNotificationSequenceNumber =
            NOT_AN_ACTION_NOTIFICATION_SEQUENCE_NUMBER;
            NOT_AN_ACTION_NOTIFICATION_SEQUENCE_NUMBER;


    /**
    /**
     * The last sequence number that is already sent to {@link InputMethodManagerService}.
     * The last sequence number that is already sent to
     * {@link com.android.server.InputMethodManagerService}.
     */
     */
    private int mLastSentUserActionNotificationSequenceNumber =
    private int mLastSentUserActionNotificationSequenceNumber =
            NOT_AN_ACTION_NOTIFICATION_SEQUENCE_NUMBER;
            NOT_AN_ACTION_NOTIFICATION_SEQUENCE_NUMBER;
@@ -2429,8 +2432,8 @@ public final class InputMethodManager {
     * Allow the receiver of {@link InputContentInfo} to obtain a temporary read-only access
     * Allow the receiver of {@link InputContentInfo} to obtain a temporary read-only access
     * permission to the content.
     * permission to the content.
     *
     *
     * <p>See {@link android.inputmethodservice.InputMethodService#exposeContent(InputContentInfo, EditorInfo)}
     * <p>See {@link android.inputmethodservice.InputMethodService#exposeContent(InputContentInfo,
     * for details.</p>
     * InputConnection)} for details.</p>
     *
     *
     * @param token Supplies the identifying token given to an input method when it was started,
     * @param token Supplies the identifying token given to an input method when it was started,
     * which allows it to perform this operation on itself.
     * which allows it to perform this operation on itself.