Hello,
In ChartRangeFilterStateRange , getEndNumber and getEndTimeOfDay should be
corrected:
//existing
public final native double getEndNumber() /*-{
this.end = end;
}-*/;
public final native TimeOfDay getEndTimeOfDay() /*-{
this.end = end;
}-*/;
//correct version
public final native double getEndNumber() /*-{
return this.end;
}-*/;
public final native TimeOfDay getEndTimeOfDay() /*-{
return this.end;
}-*/;
Thanks for your work, it's a very useful wrapper.
Original issue reported on code.google.com by xfrontli...@gmail.com on 11 Dec 2012 at 11:51
Original issue reported on code.google.com by
xfrontli...@gmail.com
on 11 Dec 2012 at 11:51