summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java
blob: 4399e0ece18a97becf1e35a6d5d25b3b1dc39e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* 
@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<Connector, String> childLocations = new HashMap<Connector, String>();
    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<Connector, String> getChildLocations() {
        return childLocations;
    }

    public void setChildLocations(Map<Connector, String> childLocations) {
        this.childLocations = childLocations;
    }

}