Package com.dragome.templates

Examples of com.dragome.templates.TemplateLayout


    setName(aName);
  }

  public VisualPanelImpl(Template template)
  {
    this(new TemplateLayout(template));
  }
View Full Code Here


    private void setupComponent()
    {
  component.setName(template.getName());
  if (component instanceof VisualPanel)
      ((VisualPanel) component).initLayout(new TemplateLayout(template));
    }
View Full Code Here

  public ComponentBuilder(VisualPanel component)
  {
    this.panel= component;
    if (component instanceof VisualPanel && ((VisualPanel) component).getLayout() instanceof TemplateLayout)
    {
      TemplateLayout templateLayout= (TemplateLayout) ((VisualPanel) component).getLayout();
      template= templateLayout.getTemplate();
    }
  }
View Full Code Here

    setName(aName);
  }

  public VisualPanelImpl(Template template)
  {
    this(new TemplateLayout(template));
  }
View Full Code Here

  public ComponentBuilder(VisualPanel component)
  {
    this.component= component;
    if (component instanceof VisualPanel && ((VisualPanel) component).getLayout() instanceof TemplateLayout)
    {
      TemplateLayout templateLayout= (TemplateLayout) ((VisualPanel) component).getLayout();
      template= templateLayout.getTemplate();
    }
    configureMethodListener();
  }
View Full Code Here

    component.setName(template.getName());
    if (component instanceof VisualPanel)
    {
      VisualPanel visualPanel= (VisualPanel) component;
      if (!(visualPanel.getLayout() instanceof TemplateLayout) || ((TemplateLayout) visualPanel.getLayout()).getTemplate() == null)
        visualPanel.initLayout(new TemplateLayout(template));
    }
  }
View Full Code Here

TOP

Related Classes of com.dragome.templates.TemplateLayout

Copyright © 2018 www.massapicom. 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.