public class BillFold { //instance fields that represent an amount of dollars and an amount of cents (separately) //no-argument constructor that creates a BillFold with no money //two-argument constructor that creates a BillFold with the specified amount of money //addMoney - method that increase the amount of money in the BillFold //removeMoney - removes the requested amount of money from the BillFold //returns the amount of money actually taken out (if it's more than available) //moneyLeft - returns the amount of money in the BillFold //printInfo - prints out the information that describes the BillFold }