comparison src/econnect/wp3_3/client/core/DataSet.java @ 68:8b58d9bc0bb6 trimmed_data

add functionality for additional tabular data from the description field (work in progress)
author Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
date Thu, 03 Jan 2013 18:43:28 +0100
parents 6ec1ab4f897a
children
comparison
equal deleted inserted replaced
67:5b049141a26e 68:8b58d9bc0bb6
1 package econnect.wp3_3.client.core; 1 package econnect.wp3_3.client.core;
2 2
3 import com.google.gwt.core.client.JavaScriptObject; 3 import com.google.gwt.core.client.JavaScriptObject;
4 import com.google.gwt.core.client.JsArray; 4 import com.google.gwt.core.client.JsArray;
5 import com.google.gwt.core.client.JsArrayString;
5 6
6 /** 7 /**
7 * Implementation of the wrapper for the DataSet class of the STI JavaScript source 8 * Implementation of the wrapper for the DataSet class of the STI JavaScript source
8 */ 9 */
9 public class DataSet extends JavaScriptObject { 10 public class DataSet extends JavaScriptObject {
50 */ 51 */
51 public final native JsArray<DataObject> getObjects() /*-{ 52 public final native JsArray<DataObject> getObjects() /*-{
52 return this.objects; 53 return this.objects;
53 }-*/; 54 }-*/;
54 55
56 /**
57 * Getter for the Array of (additional) column names in the
58 * description fields
59 *
60 * @return the array of column names (Strings)
61 */
62 public final native JsArrayString getDescriptionDataColumns() /*-{
63 return this.descriptionDataColumns;
64 }-*/;
65
55 } 66 }