Android Open Source - notes Notes Storage






From Project

Back to project page notes.

License

The source code is released under:

DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> Everyone is permitted to copy and distribute verbatim or...

If you think the Android project notes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.iliakplv.notes.notes.storage;
//from   www.java2s.c  om
import android.util.Pair;

import com.iliakplv.notes.notes.AbstractNote;
import com.iliakplv.notes.notes.Label;
import com.iliakplv.notes.notes.NotesUtils;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;

public interface NotesStorage {

  public static final Integer NOTES_FOR_ALL_LABELS = 0;
  public static final List<AbstractNote> EMPTY_NOTES_LIST = new ArrayList<AbstractNote>(0);


  // sort

  public boolean setNotesSortOrder(NotesUtils.NoteSortOrder notesSortOrder);


  // notes

  public AbstractNote getNote(Serializable id);
  public List<AbstractNote> getNotesForLabel(Serializable labelId); // for all notes use NOTES_FOR_ALL_LABELS
  public List<AbstractNote> getNotesForQuery(String searchQuery); // ignores case, spaces and empty strings

  public Serializable insertNote(AbstractNote note);
  public boolean updateNote(Serializable id, AbstractNote note);
  public boolean deleteNote(Serializable id);


  // labels

  public Label getLabel(Serializable id);
  public List<Label> getAllLabels();

  public Serializable insertLabel(Label label);
  public boolean updateLabel(Serializable id, Label label);
  public boolean deleteLabel(Serializable id);


  // notes_labels

  public List<Label> getLabelsForNote(Serializable noteId);
  public Set<Serializable> getLabelsIdsForNote(Serializable noteId);
  public Set<Pair<Serializable, Serializable>> getAllNotesLabelsIds();    // [not used]

  public Serializable insertLabelToNote(Serializable noteId, Serializable labelId);
  public boolean deleteLabelFromNote(Serializable noteId, Serializable labelId);


  // listeners

  public boolean addStorageListener(NotesStorageListener listener);
  public boolean removeStorageListener(NotesStorageListener listener);
  public List<NotesStorageListener> detachAllListeners();
  public void attachListeners(List<NotesStorageListener> listeners);

  // synchronization

  public void sync();

  // all data delete

  public void clear();
}




Java Source Code List

com.iliakplv.notes.NotesApplication.java
com.iliakplv.notes.analytics.EventTracker.java
com.iliakplv.notes.analytics.Event.java
com.iliakplv.notes.gui.main.MainActivityTest.java
com.iliakplv.notes.gui.main.MainActivity.java
com.iliakplv.notes.gui.main.NavigationDrawerFragment.java
com.iliakplv.notes.gui.main.NoteDetailsFragment.java
com.iliakplv.notes.gui.main.NotesListFragment.java
com.iliakplv.notes.gui.main.dialogs.AboutDialog.java
com.iliakplv.notes.gui.main.dialogs.AbstractItemDialog.java
com.iliakplv.notes.gui.main.dialogs.DropboxAccountLinkingDialog.java
com.iliakplv.notes.gui.main.dialogs.LabelEditDialog.java
com.iliakplv.notes.gui.main.dialogs.NoteLabelsDialog.java
com.iliakplv.notes.gui.main.dialogs.SimpleItemDialog.java
com.iliakplv.notes.gui.main.dialogs.VoiceSearchInstallDialog.java
com.iliakplv.notes.gui.settings.SettingsActivity.java
com.iliakplv.notes.notes.AbstractNote.java
com.iliakplv.notes.notes.LabelComparator.java
com.iliakplv.notes.notes.Label.java
com.iliakplv.notes.notes.NoteComparator.java
com.iliakplv.notes.notes.NotesUtils.java
com.iliakplv.notes.notes.TextNote.java
com.iliakplv.notes.notes.db.NotesDatabaseAdapter.java
com.iliakplv.notes.notes.db.NotesDatabaseOpenHelper.java
com.iliakplv.notes.notes.db.NotesDatabaseStorage.java
com.iliakplv.notes.notes.dropbox.DropboxHelper.java
com.iliakplv.notes.notes.dropbox.NotesDropboxStorage.java
com.iliakplv.notes.notes.storage.NotesStorageListener.java
com.iliakplv.notes.notes.storage.NotesStorage.java
com.iliakplv.notes.notes.storage.StorageDataTransfer.java
com.iliakplv.notes.notes.storage.StorageWrapper.java
com.iliakplv.notes.notes.storage.Storage.java
com.iliakplv.notes.storage.StorageTest.java
com.iliakplv.notes.utils.AppLog.java
com.iliakplv.notes.utils.ConnectivityUtils.java
com.iliakplv.notes.utils.StringUtils.java
com.iliakplv.notes.utils.Utils.java