Back to project page Android-Apps.
The source code is released under:
Apache License
If you think the Android project Android-Apps 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.kniezrec.voiceremote2; /*w ww . j ava 2 s . com*/ import java.util.ArrayList; import java.util.List; public class Group { public String string; public final List<String> children = new ArrayList<String>(); public Group(String string) { this.string = string; } }