Back to project page u2020-v2.
The source code is released under:
Apache License
If you think the Android project u2020-v2 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.gabor.database; /* ww w . j a v a 2s . c o m*/ import com.activeandroid.Model; import com.activeandroid.annotation.Column; import com.activeandroid.annotation.Table; @Table(name = "Cars") public class CarT extends Model { @Column(name = "Title") public String title; @Column(name = "Date") public long date; @Column(name = "Pdf") public String pdf; @Column(name = "Owner") public String owner; }