Back to project page GreenerGasPedal.
The source code is released under:
GNU General Public License
If you think the Android project GreenerGasPedal 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 name.nanek.greenerpedal.activity.support; /* w ww . j a v a2 s . c om*/ public class TriggersResult { public String url; public int priority; public float scoreChange; public String contentDescription; public TriggersResult(String url, int priority, float scoreChange, String contentDescription) { this.url = url; this.priority = priority; this.scoreChange = scoreChange; this.contentDescription = contentDescription; } }