Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch 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.ECS.client.jax; /*from www .j a v a2 s . c o m*/ import java.util.ArrayList; import java.util.List; public class Accessories { protected List<Accessories.Accessory> accessory; public List<Accessories.Accessory> getAccessory() { if (accessory == null) { accessory = new ArrayList<Accessories.Accessory>(); } return this.accessory; } public static class Accessory { protected String asin; protected String title; public String getASIN() { return asin; } public void setASIN(String value) { this.asin = value; } public String getTitle() { return title; } public void setTitle(String value) { this.title = value; } } }