comparison src/econnect/wp3_3/client/core/StiCore.java @ 86:ed444173aef0 trimmed_data

local CSV loading
author Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
date Thu, 07 Mar 2013 14:47:36 +0100
parents fe646332827c
children
comparison
equal deleted inserted replaced
85:108c853e0900 86:ed444173aef0
450 public final native void openLocalKml(int ds, String fileName) /*-{ 450 public final native void openLocalKml(int ds, String fileName) /*-{
451 this.retrieveLocalKml( ds, fileName ); 451 this.retrieveLocalKml( ds, fileName );
452 }-*/; 452 }-*/;
453 453
454 /** 454 /**
455 * Opens a local KML file via HTML5 FileAPI
456 *
457 * @param ds the index of the datasource
458 * @param input the user input text
459 */
460 public final native void openLocalCsv(int ds, String fileName) /*-{
461 this.retrieveLocalCsv( ds, fileName );
462 }-*/;
463
464 /**
455 * places a configured time refinement 465 * places a configured time refinement
456 */ 466 */
457 public final native void refineByTime(String minTime, String maxTime) /*-{ 467 public final native void refineByTime(String minTime, String maxTime) /*-{
458 this.refineByTime( minTime, maxTime ); 468 this.refineByTime( minTime, maxTime );
459 }-*/; 469 }-*/;