* Is used to add a focuslistener to different controls...
*/
static void addFocusListener(Object control,XFocusListener listener) {
XWindow xlastControl = (XWindow)UnoRuntime.queryInterface(XWindow.class,
control );
xlastControl.addFocusListener(listener);
}
/**
* Implementation of the parent class...
*/