package de.saxsys.android.projectiler.app.generatedmodel; // 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 COMMENT. */ public class Comment { private Long id; /** Not-null value. */ private String value; /** Not-null value. */ private java.util.Date timestamp; // KEEP FIELDS - put your custom fields here // KEEP FIELDS END public Comment() { } public Comment(Long id) { this.id = id; } public Comment(Long id, String value, java.util.Date timestamp) { this.id = id; this.value = value; this.timestamp = timestamp; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } /** Not-null value. */ public String getValue() { return value; } /** Not-null value; ensure this value is available before it is saved to the database. */ public void setValue(String value) { this.value = value; } /** Not-null value. */ public java.util.Date getTimestamp() { return timestamp; } /** Not-null value; ensure this value is available before it is saved to the database. */ public void setTimestamp(java.util.Date timestamp) { this.timestamp = timestamp; } // KEEP METHODS - put your custom methods here // KEEP METHODS END }