diff options
author | Artur Signell <artur@vaadin.com> | 2014-12-12 11:01:55 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2014-12-14 19:41:57 +0200 |
commit | 2789f701678106e9f5141b096706ace0d6880780 (patch) | |
tree | f785abafd7d0987d70b6da09eeadf808e8e832d1 /server/src/com/vaadin/ui/declarative | |
parent | 628a2edf50c355e6e43e1da2e32224d32651327d (diff) | |
download | vaadin-framework-2789f701678106e9f5141b096706ace0d6880780.tar.gz vaadin-framework-2789f701678106e9f5141b096706ace0d6880780.zip |
Rename LayoutHandler to Design (#7749)
Change-Id: I86fcf9062804c7eb71d460d2003a3f5eb8d775eb
Diffstat (limited to 'server/src/com/vaadin/ui/declarative')
-rw-r--r-- | server/src/com/vaadin/ui/declarative/Design.java (renamed from server/src/com/vaadin/ui/declarative/LayoutHandler.java) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/src/com/vaadin/ui/declarative/LayoutHandler.java b/server/src/com/vaadin/ui/declarative/Design.java index b3ef2f15c7..89e992181b 100644 --- a/server/src/com/vaadin/ui/declarative/LayoutHandler.java +++ b/server/src/com/vaadin/ui/declarative/Design.java @@ -35,16 +35,16 @@ import com.vaadin.ui.declarative.DesignContext.ComponentCreatedEvent; import com.vaadin.ui.declarative.DesignContext.ComponentCreationListener; /** - * LayoutHandler is used for parsing a component hierarchy from an html file - * and, conversely, for generating an html tree representation corresponding to - * a given component hierarchy. For both parsing and tree generation the - * component hierarchy must contain a single root. + * Design is used for parsing a component hierarchy from an html file and, + * conversely, for generating an html tree representation corresponding to a + * given component hierarchy. For both parsing and tree generation the component + * hierarchy must contain a single root. * * * @since 7.4 * @author Vaadin Ltd */ -public class LayoutHandler implements Serializable { +public class Design implements Serializable { /** * Constructs a component hierarchy from the design specified as an html * document. The component hierarchy must contain exactly one top-level |