Back to project page uber-android.
The source code is released under:
MIT License
If you think the Android project uber-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * UberAPILib//ww w . java 2s . c o m * * This file was automatically generated by APIMATIC BETA v2.0 on 08/22/2014 */ package io.apimatic.uberapilib.models; import java.util.List; import com.fasterxml.jackson.annotation.JsonGetter; import com.fasterxml.jackson.annotation.JsonSetter; public class ProductCollectionModel extends java.util.Observable { private List<ProductModel> products; /** GETTER * List of products */ @JsonGetter("products") public List<ProductModel> getProducts ( ) { return this.products; } /** SETTER * List of products */ @JsonSetter("products") public void setProducts (List<ProductModel> value) { this.products = value; notifyObservers(this.products); } }