Back to project page meets-android.
The source code is released under:
MIT License
If you think the Android project meets-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 com.theagilemonkeys.meets.magento.models.base; /*from www .j a va 2s . co m*/ import com.theagilemonkeys.meets.magento.models.MageMeetsAddress; import com.theagilemonkeys.meets.magento.models.MageMeetsCartItem; import com.theagilemonkeys.meets.magento.models.MageMeetsCartPayment; import com.theagilemonkeys.meets.magento.models.MageMeetsCartShipping; import com.theagilemonkeys.meets.magento.models.MageMeetsCategory; import com.theagilemonkeys.meets.magento.models.MageMeetsCustomer; import com.theagilemonkeys.meets.magento.models.MageMeetsProduct; import com.theagilemonkeys.meets.magento.models.MageStockItem; import java.util.ArrayList; import java.util.LinkedHashMap; /** * Android Meets SDK * Original work Copyright (c) 2014 [TheAgileMonkeys] * * @author ??lvaro Lpez Espinosa */ public class MageMeetsCollectionPojos { public static class ProductsMap extends LinkedHashMap<Integer, MageMeetsProduct> {} public static class ProductsArray extends ArrayList<MageMeetsProduct> {} public static class Categories extends ArrayList<MageMeetsCategory> {} public static class Customers extends ArrayList<MageMeetsCustomer> {} public static class ShippingMethods extends ArrayList<MageMeetsCartShipping> {} public static class PaymentMethods extends ArrayList<MageMeetsCartPayment> {} public static class CartItems extends ArrayList<MageMeetsCartItem> {} public static class StockInfos extends ArrayList<MageStockItem> {} public static class Addresses extends ArrayList<MageMeetsAddress> {} }