Examples of ProductItemComponent


Examples of lineage2.gameserver.model.ProductItemComponent

              {
                if ("component".equalsIgnoreCase(t1.getNodeName()))
                {
                  int item_id = Integer.parseInt(t1.getAttributes().getNamedItem("item_id").getNodeValue());
                  int count = Integer.parseInt(t1.getAttributes().getNamedItem("count").getNodeValue());
                  ProductItemComponent component = new ProductItemComponent(item_id, count);
                  components.add(component);
                }
              }
              pr.setComponents(components);
              _itemsList.put(productId, pr);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.