Package mindnotes.client.storage

Examples of mindnotes.client.storage.Storage


    NodeView childView = nodeView.createChild();
    setUpNodeView(childView, newNode);
  }

  public void load(final MindMapInfo map, boolean local) {
    Storage s = local ? getLocalStorage() : getCloudStorage();
    s.loadMindMap(map, new AsyncCallback<MindMap>() {

      @Override
      public void onFailure(Throwable caught) {

        if (caught instanceof InvocationException) {
View Full Code Here


      }
    });
  }

  protected void remove(MindMapInfo map, boolean local) {
    Storage s = local ? getLocalStorage() : getCloudStorage();
    s.remove(map, new AsyncCallback<Void>() {

      @Override
      public void onFailure(Throwable caught) {
        _mindMapView
            .showMessage("Oops! There was an error during deleting. Try again later.");
View Full Code Here

TOP

Related Classes of mindnotes.client.storage.Storage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.