Skip to content

Commit 1e2940e

Browse files
committed
Added support for MAC/MAF filtering
1 parent 3b63d67 commit 1e2940e

File tree

5 files changed

+476
-57
lines changed

5 files changed

+476
-57
lines changed

CHANGELOG

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Support for showing annotations and filtering by MAC/MAF added
2+
13
October 4, 2012 - Release 0.4.12
24
* GeneViewer (lib): Version updated to 0.4.9
35
* LDViewer (lib): Version updated to 0.1.3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package at.gmi.nordborglab.widgets.gwasgeneviewer.client;
2+
3+
import com.google.gwt.ajaxloader.client.Properties;
4+
import com.google.gwt.core.client.JsArray;
5+
import com.google.gwt.core.client.JsArrayInteger;
6+
import com.google.gwt.visualization.client.AbstractDataTable;
7+
import com.google.gwt.visualization.client.DataTable;
8+
import com.google.gwt.visualization.client.DataView;
9+
10+
/**
11+
* Created with IntelliJ IDEA.
12+
* User: uemit.seren
13+
* Date: 3/25/13
14+
* Time: 3:34 PM
15+
* To change this template use File | Settings | File Templates.
16+
*/
17+
public class CustomDataView extends DataView {
18+
19+
protected CustomDataView() {}
20+
21+
22+
public final native JsArrayInteger getFilteredRows(JsArray<Properties> properties)/*-{
23+
return this.getFilteredRows(properties);
24+
}-*/;
25+
26+
public static final native JsArrayInteger getFilteredRows(AbstractDataTable dataTable,JsArray<Properties> properties)/*-{
27+
return dataTable.getFilteredRows(properties);
28+
}-*/;
29+
}

0 commit comments

Comments
 (0)