aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-13 18:24:51 +0300
committerArtur Signell <artur@vaadin.com>2012-08-13 18:34:53 +0300
commit9bc14b90a3ec265587562f2886ec3da1cd904f44 (patch)
treef823bf5a9a6119b4036bb0facedecdad936f33e4 /src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java
parent4a1d729534e1232088529afcd48360d868093a67 (diff)
downloadvaadin-framework-9bc14b90a3ec265587562f2886ec3da1cd904f44.tar.gz
vaadin-framework-9bc14b90a3ec265587562f2886ec3da1cd904f44.zip
Moved com.vaadin.shared files to a shared src folder (#9299)
Diffstat (limited to 'src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java')
-rw-r--r--src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java b/src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java
deleted file mode 100644
index 4399e0ece1..0000000000
--- a/src/com/vaadin/shared/ui/customlayout/CustomLayoutState.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
-@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;
- }
-
-} \ No newline at end of file