Package com.google.gdt.eclipse.designer.gwtext.model.widgets

Examples of com.google.gdt.eclipse.designer.gwtext.model.widgets.PaddedPanelInfo.canDelete()


        "      {implicit-layout: default} {implicit-layout} {}",
        "    {virtual-layout_data: com.gwtext.client.widgets.layout.RowLayoutData} {virtual-layout-data} {}");
    PaddedPanelInfo paddedPanel = (PaddedPanelInfo) panel.getChildrenWidgets().get(0);
    PanelInfo content = paddedPanel.getContent();
    assertFalse(content.canDelete());
    assertTrue(paddedPanel.canDelete());
  }

  public void test_CREATE() throws Exception {
    PanelInfo panel =
        parseJavaInfo(
View Full Code Here


        "  {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() {",
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.