添加了Data中多处注释

lhn
Marcus 2 years ago
parent 1b8264a619
commit 8f0bee1262

@ -27,7 +27,7 @@ import org.json.JSONObject;
public class MetaData extends Task { public class MetaData extends Task {
/* /*
* TAG * TAG
* getSimpleName () * getSimpleName ()
*/ */
private final static String TAG = MetaData.class.getSimpleName(); private final static String TAG = MetaData.class.getSimpleName();

@ -20,6 +20,9 @@ import android.database.Cursor;
import org.json.JSONObject; import org.json.JSONObject;
/**
* Node
*/
public abstract class Node { public abstract class Node {
public static final int SYNC_ACTION_NONE = 0; public static final int SYNC_ACTION_NONE = 0;

@ -34,7 +34,9 @@ import net.micode.notes.gtask.exception.ActionFailureException;
import org.json.JSONException; import org.json.JSONException;
import org.json.JSONObject; import org.json.JSONObject;
/**
* SqldataNode
*/
public class SqlData { public class SqlData {
private static final String TAG = SqlData.class.getSimpleName(); private static final String TAG = SqlData.class.getSimpleName();

@ -37,7 +37,9 @@ import org.json.JSONObject;
import java.util.ArrayList; import java.util.ArrayList;
/**
* SqlData便便
*/
public class SqlNote { public class SqlNote {
private static final String TAG = SqlNote.class.getSimpleName(); private static final String TAG = SqlNote.class.getSimpleName();

@ -31,7 +31,9 @@ import org.json.JSONArray;
import org.json.JSONException; import org.json.JSONException;
import org.json.JSONObject; import org.json.JSONObject;
/**
* Node
*/
public class Task extends Node { public class Task extends Node {
private static final String TAG = Task.class.getSimpleName(); private static final String TAG = Task.class.getSimpleName();

@ -29,12 +29,16 @@ import org.json.JSONObject;
import java.util.ArrayList; import java.util.ArrayList;
/**
* NodeTask
*/
public class TaskList extends Node { public class TaskList extends Node {
private static final String TAG = TaskList.class.getSimpleName(); private static final String TAG = TaskList.class.getSimpleName();
private int mIndex; private int mIndex;
/*
* TaskArrayList
*/
private ArrayList<Task> mChildren; private ArrayList<Task> mChildren;
public TaskList() { public TaskList() {

Loading…
Cancel
Save