equal
deleted
inserted
replaced
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 /** |