2023.04.06
Signed-off-by: lilium-saber <WR364999428@hotmail.com>
pull/12/head
lilium-saber 2 years ago
parent 730599d461
commit 27392db5d0

@ -25,7 +25,7 @@ import android.util.Log;
import java.util.HashMap;
public class Contact { // 连接类
public class Contact { // 定义连接类
private static HashMap<String, String> sContactCache; // 定义连接哈希表
private static final String TAG = "Contact"; // 设置TAG的值为'连接'

@ -18,7 +18,7 @@ package net.micode.notes.data;
import android.net.Uri;
public class Notes { // 定义类,模块的其他类提供变量定义
public class Notes { // 定义类,模块的其他类提供变量定义
public static final String AUTHORITY = "micode_notes"; // 设置AUTHORITY
public static final String TAG = "Notes"; // 设置TAG
public static final int TYPE_NOTE = 0;

@ -27,7 +27,7 @@ import net.micode.notes.data.Notes.DataConstants;
import net.micode.notes.data.Notes.NoteColumns;
//引入Notes中接口
public class NotesDatabaseHelper extends SQLiteOpenHelper { // 该类为便签SQL表的定义以及操作便于进行文件夹与便签的各种操作,例如添加或删除的行为
public class NotesDatabaseHelper extends SQLiteOpenHelper { // 该类为便签SQL表的定义以及操作于进行文件夹与便签的各种操作,例如添加或删除的行为
private static final String DB_NAME = "note.db"; // 数据库名称
private static final int DB_VERSION = 4; // 数据库版本

@ -33,12 +33,12 @@ import net.micode.notes.data.Notes.DataColumns;
import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.data.NotesDatabaseHelper.TABLE;
public class NotesProvider extends ContentProvider {
private static final UriMatcher mMatcher; // UriMatcher类用于分辨数据
public class NotesProvider extends ContentProvider {// uri操作相关类用于对数据库进行操作
private static final UriMatcher mMatcher; // UriMatcher类用于分辨数据操作类型用于匹配不同的uri
private NotesDatabaseHelper mHelper; // 建立NotesDatabaseHelper类对象
private NotesDatabaseHelper mHelper; // 建立NotesDatabaseHelper类对象,用于数据库操作
private static final String TAG = "NotesProvider"; // 设置类名
private static final String TAG = "NotesProvider"; // 设置类名标签,用于调试
private static final int URI_NOTE = 1; // 设置便签uri
private static final int URI_NOTE_ITEM = 2;

@ -34,7 +34,7 @@ import net.micode.notes.data.Notes.TextNote;
import java.util.ArrayList;
public class Note {
public class Note {// 便签类
private ContentValues mNoteDiffValues; // 用于保存便签修改值
private NoteData mNoteData; // 保存便签的数据
private static final String TAG = "Note"; // 设置TAG为Note

@ -31,7 +31,7 @@ import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.data.Notes.TextNote;
import net.micode.notes.tool.ResourceParser.NoteBgResources;
public class WorkingNote {
public class WorkingNote {// 表示工作便签
// Note for the working note
private Note mNote; // 表示工作便签
// Note Id

Loading…
Cancel
Save