jdk/src/share/classes/java/awt/Container.java
changeset 24147 204ae465851d
parent 21967 f09a60fb5967
child 24865 09b1d992ca72
equal deleted inserted replaced
24146:f0bbc76584d7 24147:204ae465851d
   260 
   260 
   261             @Override
   261             @Override
   262             public Component findComponentAt(Container cont, int x, int y,
   262             public Component findComponentAt(Container cont, int x, int y,
   263                     boolean ignoreEnabled) {
   263                     boolean ignoreEnabled) {
   264                 return cont.findComponentAt(x, y, ignoreEnabled);
   264                 return cont.findComponentAt(x, y, ignoreEnabled);
       
   265             }
       
   266 
       
   267             @Override
       
   268             public void startLWModal(Container cont) {
       
   269                 cont.startLWModal();
       
   270             }
       
   271 
       
   272             @Override
       
   273             public void stopLWModal(Container cont) {
       
   274                 cont.stopLWModal();
   265             }
   275             }
   266         });
   276         });
   267     }
   277     }
   268 
   278 
   269     /**
   279     /**