Uses of Class
Product
-
-
Uses of Product in <Unnamed>
Methods in <Unnamed> that return Product Modifier and Type Method Description ProductProductOnOrder. getProduct()ProductController. getProductById(int id)Returns the Product object with the specified ID.Methods in <Unnamed> that return types with arguments of type Product Modifier and Type Method Description java.util.ArrayList<Product>Controller. getProductInstances()Returns the ArrayList containing all product instances.java.util.ArrayList<Product>Vendor. getProducts()Returns the list of products associated with the vendor.Methods in <Unnamed> with parameters of type Product Modifier and Type Method Description java.lang.StringController. addProductToOrder(Product product, java.util.ArrayList<ProductOnOrder> products, int qty)Adds a specified quantity of a Product object to an ArrayList of ProductOnOrder objects.booleanController. isProductInOrder(Product product, java.util.ArrayList<ProductOnOrder> products)Returns whether a Product object is in an ArrayList of ProductOnOrder objects.voidProductOnOrder. setProduct(Product product)Method parameters in <Unnamed> with type arguments of type Product Modifier and Type Method Description voidVendor. setProducts(java.util.ArrayList<Product> products)Sets the list of products associated with the vendor.Constructors in <Unnamed> with parameters of type Product Constructor Description ProductOnOrder(Product product, int qty, java.util.ArrayList<ProductOnOrder> products)
-