Skip to content

Commit 79e377c

Browse files
committed
Added CustomDataTable which calls toJSON JSNI function for caching
1 parent bbef9a3 commit 79e377c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package at.gmi.nordborglab.widgets.geneviewer.client.datasource;
2+
3+
import com.google.gwt.visualization.client.DataTable;
4+
5+
public class CustomDataTable extends DataTable {
6+
7+
protected CustomDataTable() {}
8+
9+
public final native String toJSON() /*-{
10+
return this.toJSON();
11+
}-*/;
12+
}

0 commit comments

Comments
 (0)