});
}
Panel panel = new Panel(null, null);
panel.setProperty("layout", new GridLayout(1, 2));
TextField widthField = new TextField(panel, null);
widthField.addValidator(new IntegerValidator());
widthField.setProperty("key", "width");
TextField heightField = new TextField(panel, null);
heightField.addValidator(new IntegerValidator());
heightField.setProperty("key", "height");
panel.addChild(widthField, null);
panel.addChild(heightField, null);
panel.recursiveSetDataModel(dataModel);
widthField.finalizeConstruction();
heightField.finalizeConstruction();
return panel;
}