Back to project page logmypain.
The source code is released under:
GNU General Public License
If you think the Android project logmypain 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.logmypain.utils.Models; /*from w w w. j a v a 2 s . c om*/ public class Trigger { private long id; private String name; public Trigger() { this.setId(-1); this.setName(""); } public Trigger(String name) { this.setId(-1); this.setName(name); } public String getName() { return name; } public void setName(String name) { this.name = name; } public long getId() { return id; } public void setId(long id) { this.id = id; } }