Back to project page SampleAlertDialog.
The source code is released under:
MIT License
If you think the Android project SampleAlertDialog 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.neetpiq.android.samplealertdialog.model; /*from w w w .j av a2 s. c o m*/ import com.j256.ormlite.field.DatabaseField; import com.j256.ormlite.table.DatabaseTable; @DatabaseTable public class Topic { @DatabaseField(generatedId=true) private int id; @DatabaseField private String Name; @DatabaseField private String Description; /* * constructor */ public Topic() { // ORMLite needs a no-arg constructor } public Topic(String name, String description) { this.Name = name; this.Description = description; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return Name; } public void setName(String name) { Name = name; } public String getDescription() { return Description; } public void setDescription(String description) { Description = description; } }