Back to project page Cardeto.
The source code is released under:
Apache License
If you think the Android project Cardeto 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.ggt.cardetosample.database; //from w w w . ja v a 2 s .c o m /** * Datamodel of data to put in DB. * * @author guiguito */ public class Log { private long id; private String log; /** * @return the id */ public long getId() { return id; } /** * @param id the id to set */ public void setId(long id) { this.id = id; } /** * @return the log */ public String getLog() { return log; } /** * @param log the log to set */ public void setLog(String log) { this.log = log; } @Override public String toString() { return id + " - " + log; } }