/* @VaadinApache2LicenseForJavaFiles@ */ package com.vaadin.shared.ui.customlayout; import java.util.HashMap; import java.util.Map; import com.vaadin.shared.Connector; import com.vaadin.shared.ui.AbstractLayoutState; public class CustomLayoutState extends AbstractLayoutState { Map childLocations = new HashMap(); private String templateContents; private String templateName; public String getTemplateContents() { return templateContents; } public void setTemplateContents(String templateContents) { this.templateContents = templateContents; } public String getTemplateName() { return templateName; } public void setTemplateName(String templateName) { this.templateName = templateName; } public Map getChildLocations() { return childLocations; } public void setChildLocations(Map childLocations) { this.childLocations = childLocations; } }