Searched refs:findComponentAt (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/java.desktop/macosx/classes/sun/lwawt/
H A DLWCursorManager.java53 * calls to user code (e.g. Container.findComponentAt).
109 c = AWTAccessor.getContainerAccessor().findComponentAt(
/openjdk9/jdk/src/java.desktop/share/classes/sun/awt/
H A DGlobalCursorManager.java165 * heavyweight, we use findComponentAt to find the most specific, visible,
193 findComponentAt((Container) comp,
196 // If findComponentAt returns null, then something bad has
H A DAWTAccessor.java271 * Access to the private version of findComponentAt method which has
275 Component findComponentAt(Container cont, int x, int y, boolean ignoreEnabled); method in interface:AWTAccessor.ContainerAccessor
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DContainerOperator.java433 * Maps {@code Container.findComponentAt(int, int)} through queue
435 public Component findComponentAt(final int i, final int i1) { method in class:ContainerOperator
436 return (runMapping(new MapAction<Component>("findComponentAt") {
439 return ((Container) getSource()).findComponentAt(i, i1);
445 * Maps {@code Container.findComponentAt(Point)} through queue
447 public Component findComponentAt(final Point point) { method in class:ContainerOperator
448 return (runMapping(new MapAction<Component>("findComponentAt") {
451 return ((Container) getSource()).findComponentAt(point);
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/
H A DContainer.java263 public Component findComponentAt(Container cont, int x, int y,
265 return cont.findComponentAt(x, y, ignoreEnabled);
2656 * The findComponentAt method is different from getComponentAt in
2659 * findComponentAt will search that child to find a nested component.
2671 public Component findComponentAt(int x, int y) { method in class:Container
2672 return findComponentAt(x, y, true);
2676 * Private version of findComponentAt which has a controllable
2684 final Component findComponentAt(int x, int y, boolean ignoreEnabled) { method in class:Container
2751 * The findComponentAt method is different from getComponentAt in
2754 * findComponentAt wil
2766 public Component findComponentAt(Point p) { method in class:Container
[all...]
H A DComponent.java1338 Component inTheSameWindow = win.findComponentAt(relativeToWindow.x,
/openjdk9/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCAccessibility.java402 final Component component = parent.findComponentAt(localPoint);

Completed in 160 milliseconds