Uses of Class
edu.uci.ics.inf111.dvdvendor.lib.PersistenceException

Packages that use PersistenceException
edu.uci.ics.inf111.dvdvendor.app   
edu.uci.ics.inf111.dvdvendor.devices   
edu.uci.ics.inf111.dvdvendor.lib   
 

Uses of PersistenceException in edu.uci.ics.inf111.dvdvendor.app
 

Methods in edu.uci.ics.inf111.dvdvendor.app that throw PersistenceException
 java.lang.String DVDVendor.dispenseItems()
          Method that dispense the items in the transaction using the dvdDispenser object from the dvdVendor object.
 java.lang.String TransactionDB.persistTransaction(Transaction transaction)
          This method is called to persist a Transaction in the Transaction file.
 java.lang.String DVDVendor.recordTransaction()
          Method that records the transaction in the Transaction file
 

Uses of PersistenceException in edu.uci.ics.inf111.dvdvendor.devices
 

Methods in edu.uci.ics.inf111.dvdvendor.devices that throw PersistenceException
 void Printer.print(java.util.ArrayList<java.lang.String> dataToPrint)
          Prints the arrayList of Strings passed as parameter on the screen or file, depending on the constructor used to create the printer object.
 

Constructors in edu.uci.ics.inf111.dvdvendor.devices that throw PersistenceException
Printer(java.lang.String pTargetFile)
          This constructor creates a printer whose output will be shown in a file.
 

Uses of PersistenceException in edu.uci.ics.inf111.dvdvendor.lib
 

Methods in edu.uci.ics.inf111.dvdvendor.lib that throw PersistenceException
 java.util.ArrayList<java.lang.String> Persistence.read()
          Reads the targetFile line by line and keep all the lines read in an ArrayList of Strings.
 void Persistence.write(java.util.ArrayList<java.lang.String> dataToPrint)
          Writes in the targetFile the arrayList of Strings passed as parameter.
 void Persistence.write(java.lang.String dataToPrint)
          Writes in the targetFile the String passed as parameter.
 

Constructors in edu.uci.ics.inf111.dvdvendor.lib that throw PersistenceException
Persistence(java.lang.String pTargetFile)
          This constructor creates a persistance whose output will be shown in a file.