diff 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
line wrap: on
line diff
--- a/src/econnect/wp3_3/client/core/DataSet.java	Wed Jan 02 16:52:01 2013 +0100
+++ b/src/econnect/wp3_3/client/core/DataSet.java	Thu Jan 03 18:43:28 2013 +0100
@@ -2,6 +2,7 @@
 
 import com.google.gwt.core.client.JavaScriptObject;
 import com.google.gwt.core.client.JsArray;
+import com.google.gwt.core.client.JsArrayString;
 
 /**
  * Implementation of the wrapper for the DataSet class of the STI JavaScript source
@@ -52,4 +53,14 @@
 		return this.objects;
 	}-*/;	
 	
+    /**
+     * Getter for the Array of (additional) column names in the
+     * description fields
+     *
+     * @return the array of column names (Strings)
+    */
+	public final native JsArrayString getDescriptionDataColumns() /*-{
+		return this.descriptionDataColumns;
+	}-*/;
+
 }