Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.21.1
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
With the previously generated code:
public final native com.google.gwt.core.client.JsArray<java.lang.Object> getData() /*-
{ return this.data; }-*/;
GWT fails when it compiles this as it should instead be:
com.google.gwt.core.client.JsArray<com.google.gwt.core.client.JavaScriptObject>
Here is the class definition for JsArray:
public class JsArray<T extends JavaScriptObject> extends JavaScriptObject
This JSON object is being created for a package that I have tried to exclude via the enunciate.xml config:
<api-classes>
<exclude pattern="com.extjs.gxt.ui.client.data.*"/>
</api-classes>
I am not sure why it is not being excluded.
Planning to cut a 1.21.1 release of Enunciate. I'm hoping this will make it into that release.