diff options
author | Leif Åstrand <leif@vaadin.com> | 2014-05-22 17:48:36 +0300 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-06-17 11:01:50 +0300 |
commit | f8e406c7d8214af0086bf6b8da1b3ab9f555633c (patch) | |
tree | 24297829490d4dfe1372856a79837acdcbb7b19a /uitest/src/com/vaadin/tests/widgetset/client/BeanWithAbstractSuperclass.java | |
parent | 7b99927a71ae00c1f72b115800d8a442e1877a01 (diff) | |
download | vaadin-framework-f8e406c7d8214af0086bf6b8da1b3ab9f555633c.tar.gz vaadin-framework-f8e406c7d8214af0086bf6b8da1b3ab9f555633c.zip |
Don't generate GWT.create for bean superclasses (#13813)
Change-Id: I20e03a79562d6bc71ae1454cbbe2d6903649c771
Diffstat (limited to 'uitest/src/com/vaadin/tests/widgetset/client/BeanWithAbstractSuperclass.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/widgetset/client/BeanWithAbstractSuperclass.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/widgetset/client/BeanWithAbstractSuperclass.java b/uitest/src/com/vaadin/tests/widgetset/client/BeanWithAbstractSuperclass.java new file mode 100644 index 0000000000..a3530f19e9 --- /dev/null +++ b/uitest/src/com/vaadin/tests/widgetset/client/BeanWithAbstractSuperclass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2000-2014 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.tests.widgetset.client; + +/** + * Dummy state bean used just to check that nothing breaks when generating code + * to serialize beans with properties in abstract superclasses + */ +public class BeanWithAbstractSuperclass extends AbstractSuperclassForBean { + public String propertyInsubclass; +} |