* Has <b> OK </b> status if the method does not return null.
*/
public void _createWindow() {
boolean res = false;
try {
XWindowPeer cWin = oObj.createWindow(
createDesc(new Rectangle(0,0,100,100)));
if (cWin == null) {
log.println("createWindow() create a NULL Object");
} else {
res = true;