Back to project page FlangeAssist.
The source code is released under:
MIT License
If you think the Android project FlangeAssist 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.atasoft.adapters; // www. jav a 2 s . c om import java.util.ArrayList; import java.util.List; public class ExpandableGroup { public String string; public final List<String> children = new ArrayList<String>(); public ExpandableGroup(String string) { this.string = string; } }