Back to project page sqlite-provider.
The source code is released under:
Apache License
If you think the Android project sqlite-provider 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.novoda.sqliteprovider.demo.domain; /*from w w w . j ava 2 s . com*/ import java.io.Serializable; import java.util.List; public class Shop implements Serializable { private final String name; private final String postcode; private final List<Firework> fireworks; public Shop(String name, String postcode, List<Firework> fireworks) { this.name = name; this.postcode = postcode; this.fireworks = fireworks; } public String getName() { return name; } public String getPostcode() { return postcode; } public List<Firework> getFireworks() { return fireworks; } }