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; /* www. ja v a 2 s . c om*/ import com.activeandroid.Model; import com.activeandroid.annotation.Column; import com.activeandroid.annotation.Table; @Table(name = "Images") public class ImagesT extends Model { @Column(name = "Filename") public String filename; @Column(name = "CarT") public CarT car; //images belong to a car, and cars can have many images }