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.data; /*from w w w . j av a 2 s .c o m*/ import java.sql.ResultSet; import java.sql.SQLException; public class Waiver { public String modelName; public String packageName; public String testCase; public String test; public static Waiver fromResultSet(ResultSet result) throws SQLException{ Waiver waiver = new Waiver(); waiver.modelName = result.getString("modelName"); waiver.packageName = result.getString("packageName"); waiver.testCase = result.getString("testCase"); waiver.test = result.getString("test"); return waiver; } }