Back to project page SmartTools.
The source code is released under:
GNU General Public License
If you think the Android project SmartTools 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.nj.simba.cts; /*from www . ja va 2s .c om*/ public class CtsResultReset { private String mCtsReportDir = null; public CtsResultReset(String ctsReportDir) { mCtsReportDir = ctsReportDir; } protected String loadCtsReport() { return null; } public void resetCtsReport() { } public void resetCtsReport(String ctsReportDir) { mCtsReportDir = ctsReportDir; } /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub } }