示例#1
0
  /**
   * Decrement the loading Data counter by one. When it is zero resume plotting.
   *
   * @see Graph2D#startedloading()
   * @see Graph2D#loadmessage()
   * @see LoadMessage
   */
  public void finishedloading() {

    loadingData--;

    if (loadingData > 0) return;

    if (load_thread != null) load_thread.end();
    load_thread = null;
  }