" setLayout(new RowLayout());",
" }",
"}");
panel.refresh();
//
PaddedPanelInfo paddedPanel =
(PaddedPanelInfo) createWidget("com.gwtext.client.widgets.PaddedPanel");
panel.getLayout().command_CREATE(paddedPanel, null);
assertEditor(
"public class Test extends Panel {",
" public Test() {",
" setLayout(new RowLayout());",
" {",
" PaddedPanel paddedPanel = new PaddedPanel(new Panel('New Panel'), 10, 10, 10, 10);",
" add(paddedPanel);",
" }",
" }",
"}");
assertHierarchy(
"{this: com.gwtext.client.widgets.Panel} {this} {/setLayout(new RowLayout())/ /add(paddedPanel)/}",
" {new: com.gwtext.client.widgets.layout.RowLayout} {empty} {/setLayout(new RowLayout())/}",
" {new: com.gwtext.client.widgets.PaddedPanel} {local-unique: paddedPanel} {/new PaddedPanel(new Panel('New Panel'), 10, 10, 10, 10)/ /add(paddedPanel)/}",
" {virtual-layout_data: com.gwtext.client.widgets.layout.RowLayoutData} {virtual-layout-data} {}",
" {new: com.gwtext.client.widgets.Panel} {empty} {/new PaddedPanel(new Panel('New Panel'), 10, 10, 10, 10)/}");
panel.refresh();
// "paddedPanel" can be deleted
assertTrue(paddedPanel.canDelete());
assertFalse(paddedPanel.getContent().canDelete());
paddedPanel.delete();
assertEditor(
"public class Test extends Panel {",
" public Test() {",
" setLayout(new RowLayout());",
" }",