Back to project page thesearchbattle.
The source code is released under:
Apache License
If you think the Android project thesearchbattle 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.raycoarana.thesearchbattle.model; // w w w . ja va 2s . c o m public class DataSetDefinition { private final String mSource; private final String mTerm; public DataSetDefinition(String source, String term) { mSource = source; mTerm = term; } public String getSource() { return mSource; } public String getTerm() { return mTerm; } }