Browse Source

Don't generate GWT.create for bean superclasses (#13813)

Change-Id: I20e03a79562d6bc71ae1454cbbe2d6903649c771
tags/7.2.3
Leif Åstrand 10 years ago
parent
commit
f8e406c7d8

+ 2
- 2
client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ConnectorBundle.java View File

@@ -253,9 +253,9 @@ public class ConnectorBundle {
needsSuperClass = needsSuperClass.getSuperclass();
}

for (Property property : getProperties(typeAsClass)) {
setNeedsGwtConstructor(property.getBeanType());
setNeedsGwtConstructor(typeAsClass);

for (Property property : getProperties(typeAsClass)) {
setNeedsProperty(property);

JType propertyType = property.getPropertyType();

+ 26
- 0
uitest/src/com/vaadin/tests/widgetset/client/AbstractSuperclassForBean.java View File

@@ -0,0 +1,26 @@
/*
* 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;

import java.io.Serializable;

/**
* Dummy state bean used just to check that nothing breaks when generating code
* to serialize beans with properties in abstract superclasses
*/
public abstract class AbstractSuperclassForBean implements Serializable {
public String propertyInAbstractSuperclass;
}

+ 24
- 0
uitest/src/com/vaadin/tests/widgetset/client/BeanWithAbstractSuperclass.java View File

@@ -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;
}

+ 2
- 0
uitest/src/com/vaadin/tests/widgetset/client/SerializerTestState.java View File

@@ -97,4 +97,6 @@ public class SerializerTestState extends AbstractComponentState {
public Date date1;
public Date date2;

public BeanWithAbstractSuperclass beanWithAbstractSuperclass;

}

Loading…
Cancel
Save