Back to project page jsonxmlcompare.
The source code is released under:
Apache License
If you think the Android project jsonxmlcompare 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.davidtpate.speedtest.model; // w w w . j a v a 2 s. co m public class ResultsContainer { private final long mDuration; private final int mTestRepeats; private final String mParserName; public long getDuration() { return mDuration; } public int getTestRepeats() { return mTestRepeats; } public String getParserName() { return mParserName; } public ResultsContainer(String parserName, long duration, int testRepeats){ mParserName = parserName; mDuration = duration; mTestRepeats = testRepeats; } }