Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hannah-hyj committed May 11, 2023
1 parent e30a025 commit 92b7485
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public interface AccessibilityMessageHandler extends FlutterJNI.AccessibilityDel
/** The user has long pressed on the widget with the given {@code nodeId}. */
void onLongPress(int nodeId);

/** Focus on the widget with the given {@code nodeId}. */
/** The framework has requested focus on the semantics node with the given {@code nodeId}. */
void onFocus(int nodeId);

/** The user has opened a tooltip. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public void onLongPress(int nodeId) {
sendAccessibilityEvent(nodeId, AccessibilityEvent.TYPE_VIEW_LONG_CLICKED);
}

/** The user has requested focus on the given {@code nodeId}. */
/** The framework has requested focus on the given {@code nodeId}. */
@Override
public void onFocus(int nodeId) {
sendAccessibilityEvent(nodeId, AccessibilityEvent.TYPE_VIEW_FOCUSED);
Expand Down

0 comments on commit 92b7485

Please sign in to comment.