comparison src/econnect/wp3_3/client/core/DataObject.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 5db587ba4b0f
children
comparison
equal deleted inserted replaced
67:5b049141a26e 68:8b58d9bc0bb6
159 * @return the selection status; true if selected, false if not 159 * @return the selection status; true if selected, false if not
160 */ 160 */
161 public final native boolean isSelected() /*-{ 161 public final native boolean isSelected() /*-{
162 return this.isSelected(); 162 return this.isSelected();
163 }-*/; 163 }-*/;
164 164
165 /**
166 * Getter for a row value in the description data table
167 *
168 * @return the row value
169 */
170 public final native String getDescriptionData(String columnName) /*-{
171 return this.getDescriptionData(columnName);
172 }-*/;
165 } 173 }