aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/miz_hi/smileessence/data/extra/ExtraWord.java
blob: b9fa08ee31b9e97e2f7f6a63a442bcfc5d664669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package net.miz_hi.smileessence.data.extra;

import com.j256.ormlite.field.DatabaseField;
import com.j256.ormlite.table.DatabaseTable;

@DatabaseTable(tableName="extraword")
public class ExtraWord
{
	
	@DatabaseField(generatedId = true)
	private Integer id;
	@DatabaseField
	private String text;
	
	public ExtraWord()
	{
	}
	
	public ExtraWord(String text)
	{
		this.text = text;
	}

	public Integer getId()
	{
		return id;
	}

	public void setId(Integer id)
	{
		this.id = id;
	}

	public String getText()
	{
		return text;
	}

	public void setText(String text)
	{
		this.text = text;
	}
	
}