Back to project page DisposableIncome-OldJava.
The source code is released under:
MIT License
If you think the Android project DisposableIncome-OldJava listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package uk.co.wilka.disposableincome; //from www . j a v a 2s .c om import java.util.ArrayList; public interface IAccessData { Cash getMonthlyBudget(); void setMonthlyBudget(Cash cash); void clearAllWithdrawals(); void addNewWithdrawal(CashWithdraw withdraw); ArrayList<CashWithdraw> getWithdrawsStartingThisMonth(); void removeWithdrawal(CashWithdraw withdraw); void updateWithdrawal(CashWithdraw oldWithdraw, CashWithdraw newWithdraw); }