src/share/classes/sun/awt/AWTAccessor.java

Print this page

        

*** 249,258 **** --- 249,266 ---- public interface ContainerAccessor { /** * Validates the container unconditionally. */ void validateUnconditionally(Container cont); + + /** + * + * Access to the private version of findComponentAt method which has + * a controllable behavior. Setting 'ignoreEnabled' to 'false' + * bypasses disabled Components during the search. + */ + Component findComponentAt(Container cont, int x, int y, boolean ignoreEnabled); } /* * An interface of accessor for java.awt.Window class. */