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; //from w w w . j av a 2s.c o m import com.google.gson.annotations.Expose; import java.util.ArrayList; import java.util.List; public class Car { @Expose private List<Car_> cars = new ArrayList<>(); /** * * @return * The cars */ public List<Car_> getCars() { return cars; } /** * * @param cars * The cars */ public void setCars(List<Car_> cars) { this.cars = cars; } }