Back to project page PreCTS.
The source code is released under:
Apache License
If you think the Android project PreCTS 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.androidhuman.ctsprepare.util; // w w w . ja v a 2s . c om import java.util.ArrayList; import com.androidhuman.ctsprepare.data.BasicDeviceInfo; import com.androidhuman.ctsprepare.data.Task; public class Worker { private int currentTaskIdx = -1; private ArrayList<Task> tasksToRun = null; private BasicDeviceInfo deviceInfo = null; public Worker(){ tasksToRun = new ArrayList<Task>(); } }