Back to project page spotastop.
The source code is released under:
MIT License
If you think the Android project spotastop 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 requests; /* www. j a v a2 s . c o m*/ import java.util.HashMap; public class Criteria { private HashMap<String, String> constraints = new HashMap<String, String>(); public HashMap<String, String> getConstraints() { return constraints; } public void addConstraint(String label, String condition) { this.constraints.put(label, condition); } }