We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54520fb commit 49f622cCopy full SHA for 49f622c
src/java.desktop/macosx/native/libawt_lwawt/awt/JavaComponentAccessibility.m
@@ -896,6 +896,14 @@ - (BOOL)accessibilityIsIndexAttributeSettable
896
return NO;
897
}
898
899
+- (NSInteger)accessibilityIndex {
900
+ int index = 0;
901
+ if (fParent != NULL) {
902
+ index = [fParent accessibilityIndexOfChild:self];
903
+ }
904
+ return index;
905
+}
906
+
907
/*
908
* The java/lang/Number concrete class could be for any of the Java primitive
909
* numerical types or some other subclass.
0 commit comments