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

Commit 02739a8e authored by Romain Guy's avatar Romain Guy
Browse files

Fix javadoc issues

Change-Id: Ife66a8664955ac1a79b6ffd0080000c820f24632
parent 8083419c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ import java.util.concurrent.atomic.AtomicInteger;
/**
 * A gesture is a hand-drawn shape on a touch screen. It can have one or multiple strokes.
 * Each stroke is a sequence of timed points. A user-defined gesture can be recognized by 
 * a GestureLibrary and a built-in alphabet gesture can be recognized by a LetterRecognizer. 
 * a GestureLibrary. 
 */

public class Gesture implements Parcelable {
+8 −5
Original line number Diff line number Diff line
@@ -587,6 +587,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
            return false;
        }
        final boolean propagate = onRequestSendAccessibilityEvent(child, event);
        //noinspection SimplifiableIfStatement
        if (!propagate) {
            return false;
        }
@@ -1243,6 +1244,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
                mHoveredChild = null;
            } else {
                // Pointer is still within the child.
                //noinspection ConstantConditions
                handled |= dispatchTransformedGenericPointerEvent(event, mHoveredChild);
            }
        }
@@ -1306,6 +1308,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
        // Handle the event only if leaf. This guarantees that
        // the leafs (or any custom class that returns true from
        // this method) will get a change to process the hover.
        //noinspection SimplifiableIfStatement
        if (getChildCount() == 0) {
            return super.onHoverEvent(event);
        }
@@ -1879,7 +1882,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
     * @see #FOCUS_BEFORE_DESCENDANTS
     * @see #FOCUS_AFTER_DESCENDANTS
     * @see #FOCUS_BLOCK_DESCENDANTS
     * @see #onRequestFocusInDescendants
     * @see #onRequestFocusInDescendants(int, android.graphics.Rect) 
     */
    @Override
    public boolean requestFocus(int direction, Rect previouslyFocusedRect) {
@@ -2093,10 +2096,10 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
    }

    /**
     * Perform dispatching of a {@link #restoreHierarchyState thaw()} to only this view,
     * not to its children.  For use when overriding
     * {@link #dispatchRestoreInstanceState dispatchThaw()} to allow subclasses to thaw
     * their own state but not the state of their children.
     * Perform dispatching of a {@link #restoreHierarchyState(android.util.SparseArray)}
     * to only this view, not to its children.  For use when overriding
     * {@link #dispatchRestoreInstanceState(android.util.SparseArray)} to allow
     * subclasses to thaw their own state but not the state of their children.
     *
     * @param container the container
     */