If you think the Android project blink listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.nashlincoln.blink.model;
//fromwww.java2s.com// THIS CODE IS GENERATED BY greenDAO, EDIT ONLY INSIDE THE "KEEP"-SECTIONS
// KEEP INCLUDES - put your custom includes here
// KEEP INCLUDES END
/**
* Entity mapped to table TIMER.
*/publicclass Timer {
private String name;
private String time;
private Boolean repeat;
privateInteger repeatFlags;
private Long id;
private Long attributableId;
private String attributableType;
// KEEP FIELDS - put your custom fields here
// KEEP FIELDS END
public Timer() {
}
public Timer(Long id) {
this.id = id;
}
public Timer(String name, String time, Boolean repeat, Integer repeatFlags, Long id, Long attributableId, String attributableType) {
this.name = name;
this.time = time;
this.repeat = repeat;
this.repeatFlags = repeatFlags;
this.id = id;
this.attributableId = attributableId;
this.attributableType = attributableType;
}
public String getName() {
return name;
}
publicvoid setName(String name) {
this.name = name;
}
public String getTime() {
return time;
}
publicvoid setTime(String time) {
this.time = time;
}
public Boolean getRepeat() {
return repeat;
}
publicvoid setRepeat(Boolean repeat) {
this.repeat = repeat;
}
publicInteger getRepeatFlags() {
return repeatFlags;
}
publicvoid setRepeatFlags(Integer repeatFlags) {
this.repeatFlags = repeatFlags;
}
public Long getId() {
return id;
}
publicvoid setId(Long id) {
this.id = id;
}
public Long getAttributableId() {
return attributableId;
}
publicvoid setAttributableId(Long attributableId) {
this.attributableId = attributableId;
}
public String getAttributableType() {
return attributableType;
}
publicvoid setAttributableType(String attributableType) {
this.attributableType = attributableType;
}
// KEEP METHODS - put your custom methods here
// KEEP METHODS END
}