]> source.dussan.org Git - vaadin-framework.git/commit
Ignore type parameters when looking for metadata (#12873, #12900)
authorLeif Åstrand <leif@vaadin.com>
Wed, 5 Mar 2014 14:07:10 +0000 (16:07 +0200)
committerVaadin Code Review <review@vaadin.com>
Tue, 11 Mar 2014 06:46:31 +0000 (06:46 +0000)
commit4e5d14e1e2e90c0be9f4a5b1dfb40d55d7620ce2
tree64ad023af0cb52896a86c74cc433c83c7c84f3f0
parent9f073198fe60a5e92d279e26a441aa47a3bf075d
Ignore type parameters when looking for metadata (#12873, #12900)

All code populating the TypeDataStore is generated using
writeClassLiteral which strips away all type parameters, so the code
doing lookups should also do the same to maintain compatibility.

Change-Id: I01654f4cc15188a12c735ffed55d30a34c77a064
client/src/com/vaadin/client/metadata/Method.java
client/src/com/vaadin/client/metadata/Property.java
client/src/com/vaadin/client/metadata/TypeDataStore.java
uitest/src/com/vaadin/tests/serialization/GenericWidgetHandling.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/serialization/GenericWidgetHandlingTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/widgetset/client/GenericWidget.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/widgetset/client/GenericWidgetConnector.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/widgetset/client/GenericWidgetState.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/widgetset/server/GenericWidgetComponent.java [new file with mode: 0644]