Uses of Class
edu.uci.ics.inf111.dvdvendor.app.DVDVendor

Packages that use DVDVendor
edu.uci.ics.inf111.dvdvendor.gui   
edu.uci.ics.inf111.dvdvendor.integrationtests   
 

Uses of DVDVendor in edu.uci.ics.inf111.dvdvendor.gui
 

Fields in edu.uci.ics.inf111.dvdvendor.gui declared as DVDVendor
protected  DVDVendor DVDVendorGUI.dvdVendor
          dvdVendor object that will be used for the transactions
 

Methods in edu.uci.ics.inf111.dvdvendor.gui that return DVDVendor
protected  DVDVendor Actions.initiateRent()
          Method that initiates the Rent Transaction
protected  DVDVendor Actions.initiateReturn()
          Method that initiates the Return Transaction
protected  DVDVendor Actions.start()
          Method that creates a new DVD Vendor object that includes dvdDispenser, paymentCollector, productDB, and transactionDB objects
 

Methods in edu.uci.ics.inf111.dvdvendor.gui with parameters of type DVDVendor
protected  Product Actions.addDVD(DVDVendor dvdVendor, java.lang.String barCodeNumber)
          Method that creates a new BarCode object with the barCodeNumber given as parameter, then it adds the BarCode to the DVDVendor object.
protected  java.lang.String Actions.calculateCharges(DVDVendor dvdVendor, java.lang.String barCode)
          Method that calculates the charges for the returned product
protected  java.lang.String Actions.dispenseItems(DVDVendor dvdVendor)
          Method that dispense the items in the transaction using the dvdDispenser object from the dvdVendor object
protected  void Actions.payItems(DVDVendor dvdVendor, java.lang.String cardNumber)
          Method that collects the payment for all the products in the cart
protected  void Actions.receiveItem(DVDVendor dvdVendor, java.lang.String barCode)
          Method that receives the returned item using the dvdDispenser object from the dvdVendor object
 

Uses of DVDVendor in edu.uci.ics.inf111.dvdvendor.integrationtests
 

Fields in edu.uci.ics.inf111.dvdvendor.integrationtests declared as DVDVendor
(package private)  DVDVendor DVDVendorTest.firstDVDVendor