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();
}