ijingshan / gwt-charts

Automatically exported from code.google.com/p/gwt-charts
0 stars 0 forks source link

ChartRangeFilterStateRange getEnd and getEndTimeOfDay problems #31

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago

Original comment by rglafo...@gmail.com on 11 Dec 2012 at 3:03

GoogleCodeExporter commented 9 years ago

Original comment by rglafo...@gmail.com on 27 Dec 2012 at 11:51

GoogleCodeExporter commented 9 years ago

Original comment by rglafo...@gmail.com on 3 Sep 2014 at 11:07