Back to project page openpizza-android.
The source code is released under:
MIT License
If you think the Android project openpizza-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.
package de.openpizza.android; /*from w w w . java2s .c o m*/ import java.util.List; import de.openpizza.android.service.data.Product; public class Category { private String name; private List<Product> products; public Category(String name, List<Product> products) { super(); this.name = name; this.products = products; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List<Product> getProducts() { return products; } public void setProducts(List<Product> products) { this.products = products; } }