#BlueJ class context comment0.target=Account comment0.text=\r\n\ This\ represents\ ONE\ user's\ bank\ account.\r\n\ It\ has\ their\ first\ name,\ last\ name,\ balances\ and\ loan\ they\ have\ to\ pay.\r\n\ \r\n\ For\ each\ method,\ you\ should\ ensure\ it\ logically\ makes\ sense\!\r\n\r\n\ @author\ (your\ name)\r\n\ @version\ (a\ version\ number\ or\ a\ date)\r\n comment1.params=fname\ lname\ startBalance\ startLoan comment1.target=Account(java.lang.String,\ java.lang.String,\ double,\ double) comment1.text=\r\n\ Constructor\ for\ objects\ of\ class\ account.\r\n\ This\ is\ what\ you\ need\ to\ be\ able\ to\ define\ one\ account\ object.\r\n comment2.params=amount comment2.target=void\ deposit(double) comment2.text=\r\n\ This\ is\ called\ if\ we\ want\ to\ deposit\ $$$\ into\ the\ account\r\n comment3.params=amount comment3.target=double\ withdraw(double) comment3.text=\r\n\ This\ is\ called\ if\ we\ want\ to\ withdraw\ $$$\ from\ the\ account\r\n comment4.params=amount comment4.target=double\ payLoan(double) comment4.text=\r\n\ This\ is\ called\ if\ we\ want\ to\ make\ a\ payment\ to\ the\ loan\r\n comment5.params= comment5.target=double\ getDebt() comment5.text=\r\n\ This\ is\ called\ if\ we\ want\ to\ see\ how\ much\ debt\ this\ account\ has\r\n comment6.params= comment6.target=double\ getBalance() comment6.text=\r\n\ This\ is\ called\ if\ we\ want\ to\ see\ the\ balance\ of\ this\ account\r\n numComments=7