Back to project page built.io-todo-android.
The source code is released under:
Terms of Use & Licensing<br />Hand Drawn Web Icon Set is free and it will always be free. You can use it for both commercial and non-commercial projects. You can modify the icons anyway you like. Howe...
If you think the Android project built.io-todo-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.raweng.built.userInterface; /*from ww w . j av a 2 s .c o m*/ import com.raweng.built.BuiltError; import com.raweng.built.BuiltObject; import com.raweng.built.BuiltResultCallBack; /** * BuiltDetails is use to create BuiltObject inside Class. * * @author raw engineering, Inc * */ public class BuiltDetails { String classUid; BuiltListViewResultCallBack listListener; /** * Initialise {@link BuiltDetails} instance. * * @param classUid * class uid. */ public void init(String classUid){ this.classUid = classUid; } /** * Create Object inside class which is set through {@link #init(String)} method. * * * @param objectUid * set object uid to Object. * * @return this {@link BuiltObject} instance uid. */ public BuiltObject createObject(String objectUid, BuiltListViewResultCallBack listener){ listListener = listener; BuiltObject object = new BuiltObject(classUid); if(objectUid != null){ object.setUid(objectUid); object.fetch(new BuiltResultCallBack() { @Override public void onSuccess() { } @Override public void onError(BuiltError error) { } @Override public void onAlways() { } }); } return object; } }