Package gov.sandia.jess.example.pricing.model

Examples of gov.sandia.jess.example.pricing.model.CatalogItem


    orders.put(new Integer(666), new Order(orderItems, customer));
  }

  private void createCatalogItems() {
    items = new ArrayList();
    items.add(new CatalogItem("CD Writer", 1234, 199.99f));
    items.add(new CatalogItem("CD-RW Disks", 782321, 5.99f));
    items.add(new CatalogItem("AA Batteries", 4323, 4.99f));
    items.add(new CatalogItem("Gold-tipped cable", 9876, 19.99f));
    items.add(new CatalogItem("Amplifier", 34526, 399.99f));
    items.add(new CatalogItem("Incredibles DVD", 222123, 29.99f));
  }
View Full Code Here

TOP

Related Classes of gov.sandia.jess.example.pricing.model.CatalogItem

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.