Back to project page groundify-android.
The source code is released under:
GNU General Public License
If you think the Android project groundify-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 deftsoft.iground.android; /*from www.j av a 2 s .co m*/ import java.util.ArrayList; public class BridgeClass { private BridgeClass() { } static BridgeClass obj = null; public static BridgeClass instance() { if (obj == null) obj = new BridgeClass(); return obj; } public ArrayList<String> childIDList,childFirstNameList; }