Back to project page Cafe.
The source code is released under:
Apache License
If you think the Android project Cafe 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.baidu.cafe.utils; /* w w w . j a va2s . com*/ import java.util.ArrayList; /** * @author luxiaoyu01@baidu.com * @date 2013-11-27 * @version * @todo */ public class CommandResult { public int ret = 0; public Strings console = new Strings(new ArrayList<String>()); public CommandResult() { } }