|
|
|
@ -13,38 +13,29 @@
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package net.micode.notes.gtask.data;
|
|
|
|
|
|
|
|
|
|
import android.database.Cursor;
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
|
|
import net.micode.notes.tool.GTaskStringUtils;
|
|
|
|
|
|
|
|
|
|
import org.json.JSONException;
|
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class MetaData extends Task {
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
* 功能描述:得到类的简写名称存入字符串TAG中
|
|
|
|
|
|
|
|
|
|
* 实现过程:调用getSimpleName ()函数
|
|
|
|
|
功能描述:得到类的简写名称存入字符串TAG中
|
|
|
|
|
实现过程:调用getSimpleName ()函数
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
private final static String TAG = MetaData.class.getSimpleName();
|
|
|
|
|
|
|
|
|
|
private String mRelatedGid = null;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 功能描述:设置数据,即生成元数据库
|
|
|
|
|
* 实现过程:调用JSONObject库函数put (),Task类中的setNotes ()和setName ()函数
|
|
|
|
|
* 参数注解:
|
|
|
|
|
功能描述:设置数据,即生成元数据库
|
|
|
|
|
实现过程:调用JSONObject库函数put (),Task类中的setNotes ()和setName ()函数
|
|
|
|
|
参数注解:
|
|
|
|
|
*/
|
|
|
|
|
public void setMeta(String gid, JSONObject metaInfo)
|
|
|
|
|
{
|
|
|
|
|
//对函数块进行注释
|
|
|
|
|
{//对函数块进行注释
|
|
|
|
|
try {
|
|
|
|
|
metaInfo.put(GTaskStringUtils.META_HEAD_GTASK_ID, gid);
|
|
|
|
|
/*
|
|
|
|
@ -94,13 +85,10 @@ public class MetaData extends Task {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* 功能描述:使用本地json数据对象设置元数据内容,一般不会用到,若用到,则抛出异常
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
/*功能描述:使用本地json数据对象设置元数据内容,一般不会用到,若用到,则抛出异常*/
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setContentByLocalJSON(JSONObject js) {
|
|
|
|
|
public void setContentByLocalJSON(JSONObject js) {
|
|
|
|
|
// this function should not be called
|
|
|
|
|
throw new IllegalAccessError("MetaData:setContentByLocalJSON should not be called");
|
|
|
|
|
|
|
|
|
@ -111,9 +99,6 @@ public class MetaData extends Task {
|
|
|
|
|
/*
|
|
|
|
|
* 功能描述:从元数据内容中获取本地json对象,一般不会用到,若用到,则抛出异常
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public JSONObject getLocalJSONFromContent() {
|
|
|
|
|
throw new IllegalAccessError("MetaData:getLocalJSONFromContent should not be called");
|
|
|
|
|
/*
|
|
|
|
|