Package com.google.code.magja.model.product

Examples of com.google.code.magja.model.product.ConfigurableAttributeData


     * are configurable for this product
     */
    product.setConfigurableAttributesData(new LinkedList<ConfigurableAttributeData>());
   
    // the attribute SIZE
    ConfigurableAttributeData cnfgAttributeSize = new ConfigurableAttributeData();
    cnfgAttributeSize.setAttributeId(126);
    cnfgAttributeSize.setAttributeCode("size");
   
    // the attribute COLOR
    ConfigurableAttributeData cnfgAttributeColor = new ConfigurableAttributeData();
    cnfgAttributeColor.setAttributeId(83);
    cnfgAttributeColor.setAttributeCode("color");
   
    // add the conf attr data to the product
    product.getConfigurableAttributesData().add(cnfgAttributeSize);
    product.getConfigurableAttributesData().add(cnfgAttributeColor);
   
View Full Code Here

TOP

Related Classes of com.google.code.magja.model.product.ConfigurableAttributeData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.